This document provides a comprehensive comparative study of different maze-solving techniques, specifically those used for autonomous robots in the "Micro mouse" competition. It analyzes algorithms based on graph theory like Depth-First Search (DFS), Breadth-First Search (BFS), Flood Fill, and a Modified Flood Fill. It also examines a non-graph theory Wall Follower approach. Simulation results show that graph theory algorithms like Modified Flood Fill are more efficient by requiring fewer distance updates and cells traversed to find the shortest path through mazes. The document concludes the Modified Flood Fill algorithm may be best suited for the micro mouse competition due to its efficiency in solving mazes.