Compare commits

..

1 Commits

Author SHA1 Message Date
bcf108f604 fixed 3b solution 2025-12-03 22:24:44 -06:00

View File

@@ -15,7 +15,7 @@ public class Problem3b {
String maxDigits = maxKDigitsString(line, 12); String maxDigits = maxKDigitsString(line, 12);
total += Long.parseLong(maxDigits); total += Long.parseLong(maxDigits);
} }
System.out.println("Total maximum joltage: " + total); System.out.println(total);
} catch (IOException e) { } catch (IOException e) {
e.printStackTrace(); e.printStackTrace();
} }