Sudoku MC
Sudoku solver based on the initial work of Michael Kennett
...New features:
- You interactively can open and save boards with it.
- The title of the board can be edited.
- Added early contradiction check to detect if the board is unsolvable:
1 2 . | . . . | . . .
. . . | 1 2 . | . . .
. . . | . . . | 1 2 .
-------+-------+-------
2 1 . | . . . | . . .
. . . | 2 1 . | . . .
. . . | . . . | 2 1 .
-------+-------+-------
. . . | . . . | . . .
. . 2 | . . 1 | . . .
. . 1 | . . 2 | . . .
- Contains a default template, so it can run on it's own, without any additional external file...