give up and do part 2 via a for loop

This commit is contained in:
2025-12-02 23:24:13 -05:00
parent 23d6769923
commit 980a514022
2 changed files with 39 additions and 23 deletions

View File

@@ -18,9 +18,9 @@ public class Day00 {
sb.append("\n");
}
String input = sb.toString();
System.out.println(input);
IO.println(input);
} catch (Exception e) {
System.out.println(e.getMessage());
IO.println(e.getMessage());
}
}
@@ -33,9 +33,9 @@ public class Day00 {
sb.append("\n");
}
String input = sb.toString();
System.out.println(input);
IO.println(input);
} catch (Exception e) {
System.out.println(e.getMessage());
IO.println(e.getMessage());
}
}
}