Formula: 20 × (Explored/Total) × min(Optimal/Steps, 1)
| Algorithm | Steps | Dead Ends Found | Completion Rate | Score (Given Maze) | Score (Surprise Maze) | Overall Ranking |
|---|
Left/Right-Hand Rule: Keep one hand on the wall and follow it. Simple but effective for most mazes. Works well when maze is simply connected.
Randomly choose from available directions. Eventually explores everything but can be very inefficient.
Combination of walking straight and wall-following. Uses angle tracking to ensure you don't go in circles.
Mark paths as you traverse them. Backtrack when reaching dead ends or fully explored junctions.
Iteratively remove dead ends from the maze until only the solution path remains. Requires full maze knowledge.
Systematically explore all paths using depth-first search with backtracking when dead ends are reached.
Assign distance values to each cell from the goal, then follow the gradient. Optimal but requires full maze knowledge.
New! Four custom algorithms designed for maximum performance:
Recommended: Start with Left-Hand or Right-Hand Rule. They are memory-free, hardware-friendly, and guarantee exploration of all accessible areas.