17 lines
183 B
Go
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
|
|
}
|