-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
13a1bf4
commit a556c40
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# SudokuSolver | ||
|
||
by [Alberto Fustinoni](http://aftnet.net) | ||
|
||
A sudoku solver based on Donald Knuth’s DLX algorithm. The puzzle is converted into its equivalent exact cover problem, which is what DLX actually solves, and back. The UI is created in WPF. | ||
|
||
## Usage | ||
|
||
The program accepts input as a json formatted text file: use File->Open to load a suitably formatted input (sample json files are provided in the archive; zeroes signify empty cells). | ||
|
||
Use the buttons to solve the sudoku and cycle between the solutions found; File->Save saves the solution found as a json formatted text file. | ||
|
||
## System requirements | ||
|
||
Windows XP or later (Vista or 7 recommended), .net framework 4 or later | ||
|