Sudoku solver
The idea behind this solution is to find the intersect set of {row.freelist, column.freelist, square.freelist}. If that gives only one value, that must be the value of the cell. Now if row, column and square could all be instances of a Sudoku Element object type, and that had a free_list() method, it shouldn't be too hard to write...
0 Comments:
Post a Comment
Links to this post:
Create a Link
<< Index of code examples