Non recursive Queue/Tree solution implementation

This commit is contained in:
semblanceofsense
2025-02-01 15:09:47 -07:00
parent fe768dadc4
commit 5644b23e33
4 changed files with 77 additions and 27 deletions

View File

@@ -22,7 +22,8 @@ Pixel types:
type Point struct {
X int;
Y int;
Value int
Value int;
Parent *Point
}
type Maze [][]Point