https://github.com/bolisettysujith/maze-generator-and-cracker
https://github.com/bolisettysujith/maze-generator-and-cracker
bfs-algorithm maze maze-algorithms maze-game maze-generator maze-solver python python3
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/bolisettysujith/maze-generator-and-cracker
- Owner: BolisettySujith
- Created: 2021-11-01T08:04:35.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-05-20T12:22:29.000Z (about 3 years ago)
- Last Synced: 2025-03-09T22:07:25.461Z (3 months ago)
- Topics: bfs-algorithm, maze, maze-algorithms, maze-game, maze-generator, maze-solver, python, python3
- Language: Python
- Homepage:
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Maze-Generator-and-Cracker
A maze is a network of paths and hedges designed as a puzzle through which one has to find a correct way. We can see this type of solving game in Sunday magazines. In this project you need to generate a maze and pass that generated maze to the creacker, we will see the cracking of the maze visualization in a GUI and at the end, it will highlight the correct path to reach the endpoint as an output. So in this project, you can use the BFS algorithm for cracking the maze. You can solve such games by trial and error all the ways in the given maze.
- **Maze Generator:** This is a maze generator which generates a maze.
- **Maze Cracker:** This is a maze cracker which solves the maze using BFS algorithm.## Setup
- You need to clone the repository to your local system```git clone https://github.com/BolisettySujith/Maze-Generator-and-Cracker```
- Run the mazeFinding.py file in the terminal
```python3 mazeFinding.py```
## Output
The output of the maze is a maze image and the path to reach the endpoint.
Team Members:
- [Bolisetty Sujith](https://bolisettysujith.rocks/)
- [Guggilam Sai Prabhat](https://github.com/Prabhat0321)