Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 495 Bytes

README.md

File metadata and controls

20 lines (14 loc) · 495 Bytes

Maze Generator and Solver

A maze generator and solver. This program generates a maze using recursive backtracking and then solves it using a series of morphogical processes.

⚙️ Getting Started

Install the dependencies

pipenv sync                         # using pipenv
# or
pip install -r requirements.txt     # using pip

🚀 Run the app

pipenv shell                        # if using pipenv
streamlit run main.py               # run the streamlit app