Site of competition: https://adventofcode.com/2023
The main goal - learn the rust.
- Clone repository
- Open vscode
- Open folder inside devcontainer
- Add new day task:
cargo new dayXX
- Coding!
# all tests
cargo test
# specific day
cargo test -p day01
Solve the first day challenge:
cat day01/input/challenge.txt | cargo run day01
cargo bench