Skip to content

Commit 311284c

Browse files
authored
[2024] Remove unnecessary print from Day 10
1 parent 993087f commit 311284c

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

2024/day10/main.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ func part2(input string) int64 {
3434

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

0 commit comments

Comments
 (0)