Skip to content

A python application that solves 1-bit mazes

Notifications You must be signed in to change notification settings

ngareleo/maze-runner

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 

Repository files navigation

maze-solve-py

A simple python script to solve 1-bit mazes

Run

python3 appv2.py -image='Maze name' --save='Save file'

app.py

  • Implements recursion to solve the mazes
  • It encounters problem in large mazes that invlove loops/ rings
  • It uses a single node that forks into child nodes in split ends
    • Whenever the child-node encouters a dead-end or the end-point, it traces back through the hierachy tree to the parent node
    • Reaches very deep recursion depths

appv2.py

  • Uses a long iterative a list to keep track of position and data

About

A python application that solves 1-bit mazes

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages