Maze Solver is a semi-guided Python project from boot.dev
Find a file
Dan Anglin 9bb23b6c6d
checkpoint: Graphics now draws paths
Move the path drawing functionality to the Graphics class. The Cell
class no longer needs to reference an instance of the Graphics class.
2024-02-18 02:21:09 +00:00
.forgejo/workflows feat: add maze generation functionality 2024-02-14 22:50:46 +00:00
.github/workflows feat: add entrance, exit to the maze. 2024-02-13 15:52:28 +00:00
.gitignore feat: run a simple graphical window 2024-02-12 19:53:45 +00:00
app.py checkpoint: Graphics now draws paths 2024-02-18 02:21:09 +00:00
cell.py checkpoint: Graphics now draws paths 2024-02-18 02:21:09 +00:00
errors.py feat: add maze generation functionality 2024-02-14 22:50:46 +00:00
graphics.py checkpoint: Graphics now draws paths 2024-02-18 02:21:09 +00:00
LICENSE feat: run a simple graphical window 2024-02-12 19:53:45 +00:00
line.py checkpoint: trying to move all drawing functions to Graphics 2024-02-17 21:25:03 +00:00
main.py checkpoint: trying to move all drawing functions to Graphics 2024-02-17 21:25:03 +00:00
maze.py checkpoint: Graphics now draws paths 2024-02-18 02:21:09 +00:00
README.md docs: update README.md 2024-02-13 00:19:56 +00:00
solver.py fix(solver): call random.seed() from constructor 2024-02-17 04:01:56 +00:00
tests.py checkpoint: Add side panel 2024-02-17 20:06:09 +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