AdventOfCode2021/shared/Board.go

17 lines
183 B
Go
Raw Normal View History

2021-12-16 21:11:39 +00:00
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
}