1 Copy repository locally
2 Run lee_algo.py
Dependencies needed: python, Tkinter
forked from misbah4064/Lee_Algorithm_Python
adapted to run in python3:
- lee_algo.py, line 1: "from queue import *" -> "from Queue import *"
- lee_algo.py, line 83: "print j," -> "print(j),"
- Board.py, line 2: "from Tkinter import *" -> "from tkinter import *"