This project is a simple maze-solving program implemented using Python's Turtle graphics library. The goal is to visualize the solving process of a maze using two algorithms: Depth-First Search (DFS) and Breadth-First Search (BFS).
- Visual representation of the maze.
- Solution visualization using Turtle graphics.
- Implementation of DFS and BFS algorithms to find the path from start to end.
- Python 3.x installed on your system.
- turtlegraphics library, which is included in Python’s standard library.
Clone the repository and run the code:
git clone https://github.com/tabbytadi/maze-solving-program.git
cd maze-solving-program
python maze_solver.py