- AtCoder website
- My AtCoder username:
TBali
- Link to this repo on GitHub
# -- setup
# install Rust: https://www.rust-lang.org/tools/install
rustup update stable
cargo version
cargo install
# -- lint
cargo fmt
cargo clippy
# -- test
cargo test
# -- run
cargo build --release --bin PUZZLE_ID
target/release/PUZZLE_ID.exe
# -- shortcut qa
./qa.bat
# -- cleanup
cargo clean