Crates.io | scanlan_sudoku |
lib.rs | scanlan_sudoku |
version | 0.1.0 |
source | src |
created_at | 2023-04-28 09:48:39.884084 |
updated_at | 2023-04-28 09:48:39.884084 |
description | A command-line Sudoku game, created for a university project |
homepage | https://github.com/scan-lan/scanlan_sudoku |
repository | https://github.com/scan-lan/scanlan_sudoku |
max_upload_size | |
id | 851281 |
size | 50,028 |
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.