Skip to content

Latest commit

 

History

History
67 lines (42 loc) · 1.38 KB

README.md

File metadata and controls

67 lines (42 loc) · 1.38 KB
logo

Knight's tour problem solver

A knight's tour problem solver using "Warnsdorff's Rule" - https://vrgl.ir/IB9LJ


🌟 About the Project

📷 Screenshots

screenshot

🔑 Basic Variables

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];

🚩 run

To run this project, run

  php app.php

🧭 Todo

  • Solve Knight's tour problem
  • Update readme
  • Solve knight's tour problem more dynamically

🤝 Contact

💎 Sources