mirror of
https://github.com/onyx-and-iris/aoc2024.git
synced 2025-01-10 06:40:47 +00:00
12 lines
150 B
Go
12 lines
150 B
Go
|
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}
|
||
|
}
|