From 3a48754813c6c79f68d6246799d8c9e511243a37 Mon Sep 17 00:00:00 2001 From: Nat Lasseter Date: Sun, 10 Dec 2023 23:17:02 +0000 Subject: Make WIPs return WIP --- day10/day10.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'day10/day10.java') 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> 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 loop, Integer[] coord) { -- cgit v1.2.1