A maze solving application written in javascript. The challenge is to generate a maze and solve it using a variety of basic search algorithms.
7
stars
6
forks
source link
Create Start/End Point in maze_generator.js #25
Closed
colliecoder closed 2 years ago
A cell must be assigned as a start point and end point for each maze created.
The start point should be represented by a green cell and the end point should be represented by a red cell.
The locations of the start and end points of the maze need to be added to the maze object.