.assets | ||
.cargo | ||
.github/workflows | ||
.vscode | ||
bin | ||
src | ||
.editorconfig | ||
.gitignore | ||
Cargo.lock | ||
Cargo.toml | ||
LICENSE | ||
README.md |
🎄 Advent of Code
Setup
Create your advent of code repository
- Open the template repository on Github.
- Click
Use this template
and create your repository. - Clone your repository to your computer.
Setup rust
- Install the Rust toolchain.
- (recommended) Install the rust-analyzer extension for your code editor.
- (optional) Install a native debugger. If you are using VS Code, CodeLLDB is a good option.
✨ You can start solving puzzles now! Head to the Usage section to see how to use this template. If you like, you can configure some optional features.
Usage
Setup new day
# example: `./bin/scaffold 1`
./bin/scaffold <day>
# output:
# Created module "src/bin/01.rs"
# Created empty input file "src/inputs/01.txt"
# Created empty example file "src/examples/01.txt"
# ---
# 🎄 Type `cargo run --bin 01` to run your solution.
Individual solutions live in the ./src/bin/
directory as separate binaries.
Every solution has unit tests referencing its example file. Use these unit tests to develop and debug your solution against example inputs. When editing a solution, rust-analyzer
will display buttons for these actions above the unit tests.
Download inputs for a day
Note
This command requires configuring the optional automatic input downloads feature.
# example: `./bin/download 1`
./bin/download <day>
# output:
# Loaded session cookie from "/home/felix/.adventofcode.session".
# Downloading input for day 1, 2021...
# Saving puzzle input to "/tmp/tmp.MBdcAdL9Iw/input"...
# Done!
# ---
# 🎄 Successfully wrote input to "src/inputs/01.txt"!
To download inputs for previous years, append the --year
flag. (example: ./bin/download 1 --year 2020
)
Puzzle inputs are not checked into git. See here why.
Run solutions for a day
# example: `cargo run --bin 01`
cargo run --bin <day>
# output:
# Running `target/debug/01`
# 🎄 Part 1 🎄
#
# 6 (elapsed: 37.03µs)
#
# 🎄 Part 2 🎄
#
# 9 (elapsed: 33.18µs)
To run an optimized version for benchmarking, use the --release
flag or the alias cargo rr --bin <day>
.
Displayed timings show the raw execution time of your solution w/o overhead (e.g. file reads).
Run solutions for all days
cargo run
# output:
# Running `target/release/aoc`
# ----------
# | Day 01 |
# ----------
# 🎄 Part 1 🎄
#
# 0 (elapsed: 170.00µs)
#
# 🎄 Part 2 🎄
#
# 0 (elapsed: 30.00µs)
# <...other days...>
# Total: 0.20ms
To run an optimized version for benchmarking, use the --release
flag or the alias cargo rr
.
Total timing is computed from individual solution timings and excludes as much overhead as possible.
Run all solutions against example input
cargo test
Format code
cargo fmt
Lint code
cargo clippy
Optional template features
Automatic input downloads
Install aoc-cli
and follow their setup instructions. Once installed, you can use the download command.
Readme progress tracker
This template includes a Github action that automatically updates the readme with your advent of code progress.
To enable it, complete the following steps:
1. Create private leaderboard
Go to the leaderboard page of the year you want to track and click Private Leaderboard. If you have not created a leaderboard yet, create one by clicking Create It. Your leaderboard should be accessible under https://adventofcode.com/{year}/leaderboard/private/view/{aoc_user_id}
.
2. Set repository secrets
Go to the Secrets tab in your repository settings and create the following secrets:
AOC_ENABLED
: This variable controls whether the workflow is enabled. Set it totrue
to enable the progress tracker.AOC_USER_ID
: Go to this page and copy your user id. It's the number behind the#
symbol in the first name option. Example:3031
AOC_YEAR
: the year you want to track. Example:2021
AOC_SESSION
: an active session for the advent of code website. To get this, press F12 anywhere on the Advent of Code website to open your browser developer tools. Look in your Cookies under the Application or Storage tab, and copy out thesession
cookie.
Note
The session cookie might expire after a while (~1 month) which causes the automated workflow to fail. To fix this issue, refresh theAOC_SESSION
secret.