fspoettel / advent-of-code-rust
- понедельник, 5 декабря 2022 г. в 00:37:35
🎄 Starter template for solving Advent of Code in Rust.
Solutions for Advent of Code in Rust.
This template supports all major OS (macOS, Linux, Windows).
# example: `cargo scaffold 1`
cargo 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 solve 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 the example input. For some puzzles, it might be easier to forgo the example file and hardcode inputs into the tests.
When editing a solution, rust-analyzer will display buttons for running / debugging unit tests above the unit test blocks.
Note
This command requires installing the aoc-cli crate.
# example: `cargo download 1`
cargo download <day>
# output:
# Downloading input with aoc-cli...
# 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/-y flag. (example: cargo download 1 --year 2020)
Puzzle inputs are not checked into git. Reasoning.
# example: `cargo solve 01`
cargo solve <day>
# output:
# Running `target/debug/01`
# 🎄 Part 1 🎄
#
# 6 (elapsed: 37.03µs)
#
# 🎄 Part 2 🎄
#
# 9 (elapsed: 33.18µs)solve is an alias for cargo run --bin. To run an optimized version for benchmarking, append the --release flag.
Displayed timings show the raw execution time of your solution without overhead (e.g. file reads).
cargo all
# output:
# Running `target/release/advent_of_code`
# ----------
# | Day 01 |
# ----------
# 🎄 Part 1 🎄
#
# 0 (elapsed: 170.00µs)
#
# 🎄 Part 2 🎄
#
# 0 (elapsed: 30.00µs)
# <...other days...>
# Total: 0.20msall is an alias for cargo run. To run an optimized version for benchmarking, use the --release flag.
Total timing is computed from individual solution timings and excludes as much overhead as possible.
cargo testTo run tests for a specific day, append --bin <day>, e.g. cargo test --bin 01. You can further scope it down to a specific part, e.g. cargo test --bin 01 part_one.
cargo fmtcargo clippyaoc-cli via cargo: cargo install aoc-cli --version 0.5.0..adventofcode.session file in your home directory and paste your session cookie1 into it. 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 the session cookie value.Once installed, you can use the download command.
Uncomment the clippy job in the ci.yml workflow to enable clippy checks in CI.
This template includes a Github action that automatically updates the readme with your advent of code progress.
To enable it, complete the following steps:
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}.
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 to true 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: 3031AOC_YEAR: the year you want to track. Example: 2021AOC_SESSION: an active session2 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 the session cookie.schedule section in the readme-stars.yml workflow file or add a push trigger.
A curated list of popular crates can be found on blessred.rs.
Do you have aoc-specific crate recommendations? Share them!
debug mode, integers wrap in release mode, leading to wrong output when running your solution.The session cookie might expire after a while (~1 month) which causes the downloads to fail. To fix this issue, refresh the .adventofcode.session file.
The session cookie might expire after a while (~1 month) which causes the automated workflow to fail. To fix this issue, refresh the AOC_SESSION secret.