Maze Solver is a semi-guided Python project from boot.dev
Find a file
Dan Anglin 6d919a99d6
fix: add errors for invalid cell creation
- Raise CellInvalidError when attempting to specify the wrong corners of
  the cell when creating it. The x and y values should always represent
  the top left and bottom right corners of the cell.
- Raise CellTooSmallError when attempting to specify a cell which is too
  small to correctly draw its central point.
2024-02-13 18:54:58 +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
cell.py fix: add errors for invalid cell creation 2024-02-13 18:54:58 +00:00
graphics.py feat: add entrance, exit to the maze. 2024-02-13 15:52:28 +00:00
LICENSE feat: run a simple graphical window 2024-02-12 19:53:45 +00:00
main.py feat: add entrance, exit to the maze. 2024-02-13 15:52:28 +00:00
maze.py feat: add entrance, exit to the maze. 2024-02-13 15:52:28 +00:00
README.md docs: update README.md 2024-02-13 00:19:56 +00:00
tests.py fix: add errors for invalid cell creation 2024-02-13 18:54:58 +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