Brute Force Sudoku Completion

SudokuSolverIcon

Last Friday I had a very interesting discussion with one of my fellow classmates about the possibility of a brute-force sudoku solver. Assuming that a puzzle might have about 10 preset spaces, we determined that it would take about couple thousand years to search through every single iteration, using modern computers available to consumers. My friend claimed that a brute force solver would not be practical, but having seen others create such things, I attempted to create my own.

Click the icon to download the finished product, which is a PowerPC Mac executable, since I am still running a G5. It was coded within a span of 6 hours (on and off) as a C++ command line tool, then ported the next day to Objective-C, complete with a halfway decent GUI.