We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 993087f commit 311284cCopy full SHA for 311284c
2024/day10/main.go
@@ -34,7 +34,6 @@ func part2(input string) int64 {
34
35
func findTerminalPositions(topoMap [][]rune, position lib.Point2D, terminalPositions map[lib.Point2D]bool) int64 {
36
current := topoMap[position.X][position.Y]
37
- fmt.Printf("current: %v %v\n", current, position)
38
if current == '9' {
39
terminalPositions[position] = true
40
return 1
0 commit comments