Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

C# Sudoku Solver - Enhanced Backtracking

JavaScript Is Best Script
Joined
Dec 13, 2010
Messages
631
Reaction score
131
It's 2 am and I spent a whole night writing up a GUI Sudoku Solver.

The algorithm is a slightly modified version of a traditional Sudoku solver. Though it is slower than the traditional version in some cases, it is generally faster. However, it uses more space than the traditional version. How much more? 4 * 81 * 81 = 26244 bytes. Of course, though faster than a traditional brute-force or backtracking algorithm, my algorithm is nowhere near Veteran Donald Knuth's Algorithm X.

The link below contains the download link for the binary and source files, as well as the sufficient description of the algorithm, which I am unable to rewrite at this point of time (It's 2 am D:).


Please do forward any suggestions or bugs to me should you find any.
 
Last edited:
Back
Top