rust-sudoku 0.2.2

Command line sudoku solver.
Documentation
1
2
3
4
5
6
7
8
9
10
use rust_sudoku::{cli, SudokuSolver};

fn main() -> anyhow::Result<()> {
    let config: cli::Config = cli::config().run();

    let mut solution = SudokuSolver::new(config)?;
    solution.solve()?;

    Ok(())
}