Skip to content

Latest commit

 

History

History
43 lines (25 loc) · 767 Bytes

README.md

File metadata and controls

43 lines (25 loc) · 767 Bytes

Maze Generator & Solver

This generates solvable maze everytime with different start and end points.It also solved the generated maze by finding paths from the start to end points.

Installation and running locally on [linux-system]

Requirements:

1.cmake

sudo apt-get install cmake

2.SFML library

sudo apt-get install libsfml-dev

now follow these steps serially on your CLI for running this project on your system:

  git clone https://github.com/GunarajKhatri/Maze-Generator-Solver.git
  cd Maze-Generator-Solver
  mkdir build 
  cd build 
  cmake ..
  cmake --build .
  ./maze 

And you are good to go !!

Contributing

Contributions are always welcome!