Sudoku: Difference between revisions

Content deleted Content added
Eoraptor (talk | contribs)
Line 4,487:
 
Non-guessing part is iterative. Guessing part is recursive. Implementation uses exception handling to back out of bad guesses.
 
I consider this a "brute force" solution of sorts, in that it is the same method I use when solving Sudokus manually.
<lang groovy>final CELL_VALUES = ('1'..'9')