A high-performance Sudoku solver, generator, and validator backed by Rust, with a Python wrapper. Current version 1.0.7, release cadence is irregular. Supports Python >=3.8.
pip install sudoku-rustNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Generate a Sudoku puzzle and solve it.
Install Rust via rustup (https://rustup.rs) and then reinstall the package: 'pip install sudoku-rust --no-binary sudoku-rust'.
Ensure input grids use integer 0 for blanks. Example: [[5,3,0,0,7,0,0,0,0], ...].
Expect nested list format; if you need a different format, convert accordingly.