Skip to content

Commit aa1181d

Browse files
committed
Migrating to new website
1 parent 55ac393 commit aa1181d

File tree

293 files changed

+1033
-1025
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

293 files changed

+1033
-1025
lines changed

2015/src/main/java/me/zodac/advent/Day01.java renamed to 2015/src/main/java/net/zodac/advent/Day01.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* BSD Zero Clause License
33
*
4-
* Copyright (c) 2021-2025 zodac.me
4+
* Copyright (c) 2021-2025 zodac.net
55
*
66
* Permission to use, copy, modify, and/or distribute this software for any
77
* purpose with or without fee is hereby granted.
@@ -15,7 +15,7 @@
1515
* IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1616
*/
1717

18-
package me.zodac.advent;
18+
package net.zodac.advent;
1919

2020
import java.util.Collection;
2121
import java.util.List;

2015/src/main/java/me/zodac/advent/Day02.java renamed to 2015/src/main/java/net/zodac/advent/Day02.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* BSD Zero Clause License
33
*
4-
* Copyright (c) 2021-2025 zodac.me
4+
* Copyright (c) 2021-2025 zodac.net
55
*
66
* Permission to use, copy, modify, and/or distribute this software for any
77
* purpose with or without fee is hereby granted.
@@ -15,10 +15,10 @@
1515
* IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1616
*/
1717

18-
package me.zodac.advent;
18+
package net.zodac.advent;
1919

2020
import java.util.Collection;
21-
import me.zodac.advent.shape.Box;
21+
import net.zodac.advent.shape.Box;
2222

2323
/**
2424
* Solution for 2015, Day 2.

2015/src/main/java/me/zodac/advent/Day03.java renamed to 2015/src/main/java/net/zodac/advent/Day03.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* BSD Zero Clause License
33
*
4-
* Copyright (c) 2021-2025 zodac.me
4+
* Copyright (c) 2021-2025 zodac.net
55
*
66
* Permission to use, copy, modify, and/or distribute this software for any
77
* purpose with or without fee is hereby granted.
@@ -15,14 +15,14 @@
1515
* IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1616
*/
1717

18-
package me.zodac.advent;
18+
package net.zodac.advent;
1919

2020
import java.util.Collection;
2121
import java.util.HashSet;
2222
import java.util.List;
23-
import me.zodac.advent.grid.Direction;
24-
import me.zodac.advent.grid.Point;
25-
import me.zodac.advent.util.MathUtils;
23+
import net.zodac.advent.grid.Direction;
24+
import net.zodac.advent.grid.Point;
25+
import net.zodac.advent.util.MathUtils;
2626

2727
/**
2828
* Solution for 2015, Day 3.

2015/src/main/java/me/zodac/advent/Day04.java renamed to 2015/src/main/java/net/zodac/advent/Day04.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* BSD Zero Clause License
33
*
4-
* Copyright (c) 2021-2025 zodac.me
4+
* Copyright (c) 2021-2025 zodac.net
55
*
66
* Permission to use, copy, modify, and/or distribute this software for any
77
* purpose with or without fee is hereby granted.
@@ -15,11 +15,11 @@
1515
* IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1616
*/
1717

18-
package me.zodac.advent;
18+
package net.zodac.advent;
1919

2020
import java.security.MessageDigest;
2121
import java.security.NoSuchAlgorithmException;
22-
import me.zodac.advent.util.CryptoUtils;
22+
import net.zodac.advent.util.CryptoUtils;
2323

2424
/**
2525
* Solution for 2015, Day 4.

2015/src/main/java/me/zodac/advent/Day05.java renamed to 2015/src/main/java/net/zodac/advent/Day05.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* BSD Zero Clause License
33
*
4-
* Copyright (c) 2021-2025 zodac.me
4+
* Copyright (c) 2021-2025 zodac.net
55
*
66
* Permission to use, copy, modify, and/or distribute this software for any
77
* purpose with or without fee is hereby granted.
@@ -15,10 +15,10 @@
1515
* IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1616
*/
1717

18-
package me.zodac.advent;
18+
package net.zodac.advent;
1919

2020
import java.util.Collection;
21-
import me.zodac.advent.util.StringUtils;
21+
import net.zodac.advent.util.StringUtils;
2222

2323
/**
2424
* Solution for 2015, Day 5.

2015/src/main/java/me/zodac/advent/Day06.java renamed to 2015/src/main/java/net/zodac/advent/Day06.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* BSD Zero Clause License
33
*
4-
* Copyright (c) 2021-2025 zodac.me
4+
* Copyright (c) 2021-2025 zodac.net
55
*
66
* Permission to use, copy, modify, and/or distribute this software for any
77
* purpose with or without fee is hereby granted.
@@ -15,14 +15,14 @@
1515
* IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1616
*/
1717

18-
package me.zodac.advent;
18+
package net.zodac.advent;
1919

2020
import java.util.Collection;
21-
import me.zodac.advent.grid.Grid;
22-
import me.zodac.advent.grid.GridFactory;
23-
import me.zodac.advent.grid.Point;
24-
import me.zodac.advent.pojo.GridUpdateInstruction;
25-
import me.zodac.advent.pojo.tuple.Triple;
21+
import net.zodac.advent.grid.Grid;
22+
import net.zodac.advent.grid.GridFactory;
23+
import net.zodac.advent.grid.Point;
24+
import net.zodac.advent.pojo.GridUpdateInstruction;
25+
import net.zodac.advent.pojo.tuple.Triple;
2626

2727
/**
2828
* Solution for 2015, Day 6.

2015/src/main/java/me/zodac/advent/Day07.java renamed to 2015/src/main/java/net/zodac/advent/Day07.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* BSD Zero Clause License
33
*
4-
* Copyright (c) 2021-2025 zodac.me
4+
* Copyright (c) 2021-2025 zodac.net
55
*
66
* Permission to use, copy, modify, and/or distribute this software for any
77
* purpose with or without fee is hereby granted.
@@ -15,16 +15,16 @@
1515
* IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1616
*/
1717

18-
package me.zodac.advent;
18+
package net.zodac.advent;
1919

2020
import java.util.Collection;
2121
import java.util.HashMap;
2222
import java.util.Map;
2323
import java.util.regex.Pattern;
24-
import me.zodac.advent.math.BitwiseOperation;
25-
import me.zodac.advent.pojo.tuple.Pair;
26-
import me.zodac.advent.util.NumberUtils;
27-
import me.zodac.advent.util.StringUtils;
24+
import net.zodac.advent.math.BitwiseOperation;
25+
import net.zodac.advent.pojo.tuple.Pair;
26+
import net.zodac.advent.util.NumberUtils;
27+
import net.zodac.advent.util.StringUtils;
2828

2929
/**
3030
* Solution for 2015, Day 7.

2015/src/main/java/me/zodac/advent/Day08.java renamed to 2015/src/main/java/net/zodac/advent/Day08.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* BSD Zero Clause License
33
*
4-
* Copyright (c) 2021-2025 zodac.me
4+
* Copyright (c) 2021-2025 zodac.net
55
*
66
* Permission to use, copy, modify, and/or distribute this software for any
77
* purpose with or without fee is hereby granted.
@@ -15,7 +15,7 @@
1515
* IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1616
*/
1717

18-
package me.zodac.advent;
18+
package net.zodac.advent;
1919

2020
import java.util.Collection;
2121
import java.util.regex.Pattern;

2015/src/main/java/me/zodac/advent/Day09.java renamed to 2015/src/main/java/net/zodac/advent/Day09.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* BSD Zero Clause License
33
*
4-
* Copyright (c) 2021-2025 zodac.me
4+
* Copyright (c) 2021-2025 zodac.net
55
*
66
* Permission to use, copy, modify, and/or distribute this software for any
77
* purpose with or without fee is hereby granted.
@@ -15,11 +15,11 @@
1515
* IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1616
*/
1717

18-
package me.zodac.advent;
18+
package net.zodac.advent;
1919

2020
import java.util.Collection;
21-
import me.zodac.advent.pojo.Route;
22-
import me.zodac.advent.search.DistanceCalculator;
21+
import net.zodac.advent.pojo.Route;
22+
import net.zodac.advent.search.DistanceCalculator;
2323

2424
/**
2525
* Solution for 2015, Day 9.

2015/src/main/java/me/zodac/advent/Day10.java renamed to 2015/src/main/java/net/zodac/advent/Day10.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* BSD Zero Clause License
33
*
4-
* Copyright (c) 2021-2025 zodac.me
4+
* Copyright (c) 2021-2025 zodac.net
55
*
66
* Permission to use, copy, modify, and/or distribute this software for any
77
* purpose with or without fee is hereby granted.
@@ -15,7 +15,7 @@
1515
* IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1616
*/
1717

18-
package me.zodac.advent;
18+
package net.zodac.advent;
1919

2020
/**
2121
* Solution for 2015, Day 10.

0 commit comments

Comments
 (0)