A Sudoku Solver written in pure python.
sources:
https://stackoverflow.com/questions/60291245/why-does-this-recursive-algorithm-sudoku-solver-prints-the-board-back-into-its
https://www.youtube.com/watch?v=G_UYXzGuqvM&t=454s
Note: the backtracking algorithm was not developed by me, it was soly used to make the problems solve more complexe problems in adition to easy problems. The main goal of this project was to find optimized ways to not "Brute force" the initial part of the solving process, through the use of constraint analysis.