This is my Sudoku game and automatic solver, built using Rust.
Both can be installed by following the instructions for your platform on https://rustup.rs.
The game can be built using cargo build --release
, then an executable for
your OS should be available at <sudoku path>/target/release/scanlan_sudoku
.
Alternatively, the game can be run directly with the command cargo run
--release
.
In its current state, the game requires code modification to change the order of the generated puzzles. It has been made as simple as possible.
const ORDER: usize = 3;
to the value of your choice, e.g const
ORDER: usize = 4;
for a 16 x 16 puzzle.