AdventOfCode2021/day04/4b/Board.go
2021-12-16 19:55:49 +00:00

17 lines
181 B
Go

package main
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
}