A simple sudoku game in a terminal. First project in Rust, mainly done as a training.
Build the application with Cargo:
cargo build
cargo build --release
Build the application with Docker:
docker build . -t sudoku
Run the application with Cargo:
cargo run
Run the application with Docker:
docker run -it sudoku
cargo test