Maze Solver is a semi-guided Python project from boot.dev
Find a file
Dan Anglin 2ebb555bac
fix: only draw the graphics if the window exists
Optionally pass in the reference of the Window to the Maze and
Cell classes, and only draw the graphics if the reference exists.

Use a single underscore instead of the double underscore for private
Class members.
2024-02-13 13:39:25 +00:00
.gitignore feat: run a simple graphical window 2024-02-12 19:53:45 +00:00
cell.py fix: only draw the graphics if the window exists 2024-02-13 13:39:25 +00:00
graphics.py fix: only draw the graphics if the window exists 2024-02-13 13:39:25 +00:00
LICENSE feat: run a simple graphical window 2024-02-12 19:53:45 +00:00
main.py feat: add the Maze class 2024-02-13 12:18:47 +00:00
maze.py fix: only draw the graphics if the window exists 2024-02-13 13:39:25 +00:00
README.md docs: update README.md 2024-02-13 00:19:56 +00:00

Maze Solver

Overview

This project is WIP.

The Maze Solver randomly generates a maze and systematically solves it.

Built with Python and Tkinter.

Repository mirrors