Skip to content

leancz/sudoku

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

sudoku

A Sudoku solver

A very simple Sudoku solver. As this is just the first version you have to edit the Sudoku you want to solve in the global called square. None for blank spaces.

Start Python and

import sudoku

sudoku.solver(sudoku.square)

and hopefully you get a solution.

The algorithm doesn't use recursion, rather it uses a stack (list.append(), list.pop()) to traverse the solution space graph.

Releases

No releases published

Packages

No packages published

Languages