diff options
author | Nat Lasseter <user@4574.co.uk> | 2023-12-10 23:17:02 +0000 |
---|---|---|
committer | Nat Lasseter <user@4574.co.uk> | 2023-12-10 23:17:02 +0000 |
commit | 3a48754813c6c79f68d6246799d8c9e511243a37 (patch) | |
tree | a7a6e74ecd2870c83f87a9cef112992f569e9d71 | |
parent | d56f0a96f5aec7d28a8caf1417bae7a4d03760b0 (diff) |
Make WIPs return WIP
-rw-r--r-- | day08/day08.java | 3 | ||||
-rw-r--r-- | day10/day10.java | 5 |
2 files changed, 7 insertions, 1 deletions
diff --git a/day08/day08.java b/day08/day08.java index 34f9ed1..e60ecbd 100644 --- a/day08/day08.java +++ b/day08/day08.java @@ -70,6 +70,8 @@ public class day08 { } public static String part2(RandomAccessFile input) throws IOException { + return "WIP"; + /* char[] instr = input.readLine().toCharArray(); input.readLine(); @@ -139,6 +141,7 @@ public class day08 { } return Integer.toString(count); + */ } } diff --git a/day10/day10.java b/day10/day10.java index 90bb74f..cf8eaa6 100644 --- a/day10/day10.java +++ b/day10/day10.java @@ -127,6 +127,8 @@ public class day10 { } public static String part2(RandomAccessFile input) throws IOException { + return "WIP"; + /* int srow = -1, scol = -1; ArrayList<ArrayList<Tile>> grid = new ArrayList<>(); String line; @@ -247,7 +249,8 @@ public class day10 { } } - return "WIP";//Integer.toString(inloop); + return Integer.toString(inloop); + */ } static boolean isOnLoop(ArrayList<Integer[]> loop, Integer[] coord) { |