This project, maze_path_finder, implements multiple algorithms for maze path finding. There are two implementations, one for path finding in 2D, on a square grid, and in 3D, on a cubical grid. For our ...
This project implements a random maze generator and visualizes the solution using the A* pathfinding algorithm. It generates a maze, saves it as a PNG image, and highlights the path found by A*. The ...