Skip to content

Commit

Permalink
[2024] Remove unnecessary print from Day 10
Browse files Browse the repository at this point in the history
  • Loading branch information
kfarnung authored Dec 17, 2024
1 parent 993087f commit 311284c
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion 2024/day10/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ func part2(input string) int64 {

func findTerminalPositions(topoMap [][]rune, position lib.Point2D, terminalPositions map[lib.Point2D]bool) int64 {
current := topoMap[position.X][position.Y]
fmt.Printf("current: %v %v\n", current, position)
if current == '9' {
terminalPositions[position] = true
return 1
Expand Down

0 comments on commit 311284c

Please sign in to comment.