We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17b9e6d commit 0fa35beCopy full SHA for 0fa35be
src/main/java/aminetti/adventofcode2024/day01/Day01.java
@@ -33,7 +33,7 @@ public long solvePart1() {
33
if (matcher.matches()) {
34
Integer a = Integer.valueOf(matcher.group(1));
35
Integer b = Integer.valueOf(matcher.group(2));
36
- LOGGER.info("Reading: {} and {}", a, b);
+ LOGGER.debug("Reading: {} and {}", a, b);
37
left.add(a);
38
right.add(b);
39
} else {
@@ -56,7 +56,7 @@ public long solvePart2() {
56
57
Long a = Long.valueOf(matcher.group(1));
58
Long b = Long.valueOf(matcher.group(2));
59
60
left.compute(a, (k, v) -> (v == null) ? 1 : v + 1);
61
right.compute(b, (k, v) -> (v == null) ? 1 : v + 1);
62
0 commit comments