A crate for generating and solving sodokus.
For now, you can try:
``` // main.rs use sodoku::{SodokuMatrix, Sodoku}; use sodoku::examples::SODOKU;
pub fn main() { for sodoku in SODOKU.iter() { let mut sodoku = Sodoku::from_matrix(sodoku.clone()); sodoku.solve(); println!("{}", sodoku); } }
```
16*16
hexadecimal sodoku