soku 0.1.1

Easy sudoku generation and solving
Documentation
1
2
3
4
5
6
7
use soku::prelude::*;

fn main() -> SudokuResult<()> {
    let sudoku = Sudoku::new_unique(SudokuConfig { cells: 23 });
    println!("{sudoku}");
    Ok(())
}