aoc2024/day-18/internal/point/point.go
onyx-and-iris 22b442171b add point subpackage
build ShortestPath as ordered map

replace dijkstra in part two with a bfs
2024-12-19 21:32:21 +00:00

7 lines
51 B
Go

package point
type Point struct {
X int
Y int
}