Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 570 Bytes

File metadata and controls

23 lines (18 loc) · 570 Bytes

Analyzing 9x9 Sudoku Solvers

Assuming you have Python 3.7 or Python 3.9 installed, and you use python3 as your command to run on terminal

To run the backtracking algorithm WITHOUT printing the boards

python3 backtracking-solver.py

To run the backtracking algorithm WITH printing the boards

python3 backtracking-solver-print.py

To run our Rule Based (Human Technique) Solver WITHOUT printing the boards

python3 human_solver.py

To run our Rule Based (Human Technique) Solver WITH printing the boards

python3 human_solver_print.py