Skip to content

Simple sudoku solver using backtracking. Reading sudoku data from a csv file.

Notifications You must be signed in to change notification settings

oemel09/Sudoku-Solver

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Sudoku-Solver

Simple sudoku solver using backtracking. Reading sudoku data from a csv file.

Each csv file represents one sudoku. The sudoku needs to be given in the following format:

  • Nine rows in total.

  • Each row has to be structured by the following rules:

    • If a number is given, type in that number.
    • If the cell is empty, don't input anything.
    • Separate values by a comma ,.
  • Example row: 1,2,3,,5,6,,,9

The solver is now able to compute all possible solutions for a given sudoku.

About

Simple sudoku solver using backtracking. Reading sudoku data from a csv file.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages