Sudoku solver based on Dacing Links algorithm (see paper)
To build the project for linux/amd64, simply run
makeTo clean all produced objects, run
make cleanThe produced program can be found in the cmd folder.
For example, try to execute the following for solving the example sudoku puzzle:
cmd/sudoku.bin --verbose --file examples/sudoku.txtFor creating puzzle, run the program with the create command (very slow!):
cmd/sudoku.bin --cmd createInstruction on how to use the program can be printed by
cmd/sudoku.bin --help