LyndonArmitage / sudoku

Some Sudoku solving code
0 stars 0 forks source link

Create logic solver #4

Closed LyndonArmitage closed 9 years ago

LyndonArmitage commented 9 years ago

Create a solver that solves a Sudoku by iterating over it and applying a logical process.

This would be going through the general algorithm you do by hand. A more formal explanation of some algorithms/solutions can be found here.

LyndonArmitage commented 9 years ago

Created a basic logic solver which applies the simple techniques of building a list of possible values for each box and then filling in those that only have 1 value.