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