Expand description
§Rust sudoku solver
Simple cli program to solve sudoku puzzles.
§Usage
The program reads a puzzle reads a puzzle from a file or stdin using the following format:
The puzzle is filled in left-right top-bottom where every number 1-9 is put into the current place in the puzzle, 0 or any other letter is considered a blank space, and any whitespace is ignored.
Modules§
- cli
- The configuration of the project gotten from CLI.
Structs§
- Sudoku
Solver - Sudoku solver. Takes in a config and will solve the puzzle.