Maze Problem

Backtracking demo to solve a maze.

You select the maze and one solution is found. Press ShowMoves to see how it does it - using backtracking - where the program tries to move to the next free square and if successful tries to move to the next. If it cant find a move from the next place, the current one must be wrong, so the program looks again.