Completed Day 4a

tough one, lots of spaghetti code too!
This commit is contained in:
2021-12-04 21:29:22 +00:00
parent b3827cf53a
commit 6aef789d0f
5 changed files with 794 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
}