AdventOfCode2021/shared/Board.go
2021-12-16 21:11:39 +00:00

17 lines
183 B
Go

package shared
type Board struct {
Values [5][5]BoardValue
Hash map[int]Location
}
type BoardValue struct {
Value int
Visited bool
}
type Location struct {
X int
Y int
}