Knight-Tour-Warnsdorff is an implementation and visualization of the Warnsdorff algorithm of the Knight Tour Problem. To explain briefly, a knight's tour is a sequences of moves that a knight can make to visit each square once. The Warnsdorff algorithm works by making the knight move to the square with the least onwards moves.
pip install -r requirements.txt
or
pip3 install -r requirements.txt
Once finished, you can run the project by typing:
python main.py
- Anjolaoluwa Olubusi - Programming - anjolaolubusi
- Warnsdorff for his Warnsdorff's algorithm.
- Arnd Roth for his improvements to the Warnsdorff's algorithm