aoc2024/day-16/internal/two/move.go

12 lines
150 B
Go
Raw Normal View History

2024-12-19 01:27:45 +00:00
package two
type move struct {
node node
cost int
path []node
}
func newMove(n node, cost int, path []node) move {
return move{n, cost, path}
}