Skip to content
#

maze-generator

maze logo

A maze is a type of puzzle involving a collection of paths, usually where a player has to find a route from start to finish.

A huge variety of algorithms exist for generating and solving mazes. These are not only fun to implement, but also are a good way to familiarise yourself with programming techniques, algorithms, and languages.

Here are 175 public repositories matching this topic...

The terminal-based maze solver project is a command-line program that helps users navigate through a maze. It takes a maze as input and finds a path from the starting point to the goal, using algorithms like DFS or BFS. The program displays the maze and the solution path in the terminal interface.

  • Updated Jan 5, 2024
  • Python

This is a robot simulator that runs on the terminal. The user can make the simulated robot move back/forward by n Steps, turn left/right, replay past movements, Load or Generate a procedural Maze of obstacles, and solve it using the Depth-First Search Algorithm. The program makes use of the turtle library to render the robot's environment and th…

  • Updated Mar 14, 2021
  • Python