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