-
A simple project created in order to learn different algorithms for solving sudoku puzzles
-
The algorithm employed in this project is the Backtracking with Constant Propagation
Sudoku-Solver/
├── .gitignore
├── board.py
├── generator.py
├── main.py
├── README.md
├── solver.py
-
Demonstration of the Backtracking with constant propagation algorithm
-
Live GUI Output showing the algorithm in action
-
Modifiable speed for solving the algo
git clone https://github.com/AndyFerns/Sudoku-Solver
There are no external dependencies, and the entire project is built using stdlib
python -u main.py
@AndyFerns