A sudoku solver that takes a Backtracking algorithm approach. Backtracking is a depth-first algorithm that involves attempting every possible solution/branch and in the case of a mistake or failure, it instantly abandons it and returns to the previous state to move onto the next possible solution/branch.
BKPrograms/sudoku-backtrack-solver
A sudoku solver that takes a Backtracking algorithm approach.
Python