Skip to content

Solve Sudoku of any difficulty with just a single click

Notifications You must be signed in to change notification settings

Arsenic-ATG/Sudoku-Solver

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Sudoku-Solver (console version)

program that solves sudoku in less than a second

INPUT INSTRUCTIONS

Input the sudoku row by row and use 0 at the place of empty box (sample inputs are already attached)

algorithm (backtracking) :-

It uses recursive calling to find the solution by building a solution step by step increasing values with time. It removes the solutions that doesn't give rise to the solution of the problem based on the constraints given to solve the problem. much better and faster than brute force but still takes a lot of time for larger sudokus.

Releases

No releases published

Packages

No packages published

Languages