(Blind) Maze puzzle now with generation and play modes.

Last Updated or created 2023-04-21 Info: How is the maze generated? It is generated using recursive backtracking: Start at 0,0 mark visited, select a random direction from unvisited neighbours, push current on the stack, goto new location, and mark this visited.Repeat until no possible directions.pop from the stack a previous location, another direction possible? Take … Continue reading (Blind) Maze puzzle now with generation and play modes.