/Lee_Algorithm_Python

Simple implementation of the Maze Solving Lee Algorithm

Primary LanguagePython

Lee_Algorithm_Python

1 Copy repository locally

2 Run lee_algo.py

Dependencies needed: python, Tkinter

forked from misbah4064/Lee_Algorithm_Python

adapted to run in python3:

  1. lee_algo.py, line 1: "from queue import *" -> "from Queue import *"
  2. lee_algo.py, line 83: "print j," -> "print(j),"
  3. Board.py, line 2: "from Tkinter import *" -> "from tkinter import *"