Skip to content

Latest commit

 

History

History
13 lines (7 loc) · 930 Bytes

File metadata and controls

13 lines (7 loc) · 930 Bytes

Maze Solver

MazeSolver1 MazeSolver2

Translation of p5/javascript code from the CodingTrain channel into Windows Form with C#

Exercise Ideas

The main algorithm is inside the Form1.cs file. There are some modifications to make it work inside Windows Form (which makes you appreciate the p5 library even more with how it simplifies things)

Combining Maze Generator and Pathfinding A* to create to Maze Solver that will find the most efficient path through a random maze.