AdventOfCode2021/day4/day 4b/Board.go

17 lines
181 B
Go
Raw Normal View History

2021-12-04 22:42:13 +00:00
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
}