We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbdf832 commit a1dcb4dCopy full SHA for a1dcb4d
src/main/java/com/sbaars/adventofcode/year22/days/Day9.java
@@ -1,6 +1,5 @@
1
package com.sbaars.adventofcode.year22.days;
2
3
-import com.sbaars.adventofcode.common.Day;
4
import com.sbaars.adventofcode.common.Direction;
5
import com.sbaars.adventofcode.year22.Day2022;
6
@@ -18,13 +17,7 @@ public Day9() {
18
17
}
19
20
public static void main(String[] args) {
21
- Day d = new Day9();
22
- d.downloadIfNotDownloaded();
23
- d.downloadExample();
24
- d.printParts();
25
-// System.in.read();
26
-// d.submitPart1();
27
-// d.submitPart2();
+ new Day9().printParts();
28
29
30
public record Move(char dir, long n){}
0 commit comments