A python program that randomly generates and solves mazes
- python 3.9.x or higher
- tkinter
- clone the repository with
git clone https://github.com/Greeshmanth1909/maze-solver.git
run
python main.py
- the
Maze
class controls the dimensions of the maze
Maze(vertexX, vertexY, num_rows, num_cols, length_of_each_cell, width_of_each_cell, tkinter_window_instance)
the vertices correspond to the top left corner of the maze. (see main.py
for example of proper usage of Maze
class)