Knight's tour problem solver
A knight's tour problem solver using "Warnsdorff's Rule" - https://vrgl.ir/IB9LJ
🌟
About the Project
📷
Screenshots
🔑
Basic Variables
To use this project, you will need to change the following variables to your app.php file
// board size
$x_size = 12;
$y_size = 12;
// Knight's start position
$knightPos = ['y' => 1, 'x' => 1];
🚩
run
To run this project, run
php app.php
🧭
Todo
- Solve Knight's tour problem
- Update readme
- Solve knight's tour problem more dynamically