Skip to content

Latest commit

 

History

History

Sudoku Solver

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

I will be following Backtracking Algorithm to solve this problem.

The algorithm works something like this:

  1. Pick empty box.
  2. Try all numbers.
  3. Find one that works.
  4. Backtrack when the sudoku rules are broken.
  5. Repeat the above steps until all the boxes are filled up.