Skip to content

Commit

Permalink
i don't need long...
Browse files Browse the repository at this point in the history
  • Loading branch information
zebalu committed Dec 3, 2023
1 parent d0586e5 commit 4912a34
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ private static void part1(List<String> matrix) {
}

private static void part2(List<String> matrix) {
long sum = 0L;
int sum = 0;
for (int y = 0; y < matrix.size(); ++y) {
String line = matrix.get(y);
for (int x = 0; x < line.length(); ++x) {
Expand Down

0 comments on commit 4912a34

Please sign in to comment.