summaryrefslogtreecommitdiff
path: root/day08/day08.java
diff options
context:
space:
mode:
Diffstat (limited to 'day08/day08.java')
-rw-r--r--day08/day08.java3
1 files changed, 3 insertions, 0 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);
+ */
}
}