day 4b complete

This commit is contained in:
2021-12-04 22:42:13 +00:00
parent 6aef789d0f
commit 92a9400eef
4 changed files with 200 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
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
}