A command line program to solve sudoku puzzles. Sudokus are solved with the backtrace algorithm.
Written by David Wiebe.
To build run the following:
makeThis will produce the CLI file
To solve a sudoku file:
./CLI --Solve-File <Filepath>To print a sudoku file:
./CLI --Print-File <Filepath>To generate a sudoku of a size from a seed:
./CLI --Generate <size> <optional: seed>To run a single test:
./CLI --Test-File <Input Filepath> <Compair Filepath>To run a test script file:
./CLI --Test-Script <Script Filepath>For help:
./CLI help