kyletolle / sudocore

Sudoku solver written in Ruby.
BSD 2-Clause "Simplified" License
2 stars 0 forks source link

Add a brute-brute-force algorithm. #10

Open kyletolle opened 12 years ago

kyletolle commented 12 years ago

Prevent worst-case puzzles from taking an hour to solve like they do now.

Do some transformations on the puzzle (rotations/flips) to get a number of puzzles to solve all at once. Then. solve them all at once and return (rotated/flipped back to normal) whichever puzzle returns first.