Live data from Hacker News

Sudoku Solver in python

codingismycraft.com

1–5 of 5 posts

Re: Sudoku Solver in python

#3
The code is missing one of the "groups". There should be 27 (one for each of the 9 rows, columns and 3x3 squares), but there are only 26. The missing one is the column [8 ... 80].

Probably the most famous Sudoku program is Peter Norvig's, also written in Python:

http://www.norvig.com/sudoku.html

Re: Sudoku Solver in python

#4

The code is missing one of the "groups". There should be 27 (one for each of the 9 rows, columns and 3x3 squares), but there are only 26. The missing one is the column [8 ... 80]. Probably the most famous Sudoku program is Peter Norvig's, also written in Python: http://www.norvig.com/sudoku.html

Good catch... I've changed already.. thx