Skip to content

Commit fa898ae

Browse files
committed
[2024] Fixups and submodule update
1 parent 89fa671 commit fa898ae

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

2024/day12/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ func part2(input string) int64 {
4141
seen := make(map[point]bool)
4242

4343
for i, row := range garden {
44-
for j, _ := range row {
44+
for j := range row {
4545
location := point{i, j}
4646
if seen[location] {
4747
continue

private

0 commit comments

Comments
 (0)