updated repo layout

This commit is contained in:
2021-12-16 19:55:49 +00:00
parent 9f4bdcf271
commit 90bc7c683d
47 changed files with 20 additions and 20 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
}