Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork0
🎄Starter template for solving Advent of Code in Rust.
License
Rettend/advent-of-code-rust
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
Solutions forAdvent of Code inRust.
This template supports all major OS (macOS, Linux, Windows).
- Openthe template repository on Github.
- ClickUse this template and create your repository.
- Clone your repository to your computer.
- Install theRust toolchain.
- (recommended) Install therust-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 theUsage section to see how to use this template. If you like, you can configuresome optional features.
# 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.
Everysolution hasunit tests referencing itsexample 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 requiresinstalling the aoc-cli crate.
# example: `cargo download 1`cargo download<day># output:# Loaded session cookie from "/Users/<snip>/.adventofcode.session".# Fetching puzzle for day 1, 2022...# Saving puzzle description to "src/puzzles/01.md"...# Downloading input for day 1, 2022...# Saving puzzle input to "src/inputs/01.txt"...# Done!# ---# 🎄 Successfully wrote input to "src/inputs/01.txt".# 🎄 Successfully wrote puzzle to "src/puzzles/01.md".
To download inputs for previous years, append the--year/-y flag.(example:cargo download 1 --year 2020)
Puzzle descriptions are stored insrc/puzzles as markdown files. 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 forcargo run --bin. To run an optimized version for benchmarking, append the--release flag.
Displayedtimings 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.20ms
all is an alias forcargo run. To run an optimized version for benchmarking, use the--release flag.
Total timing is computed from individual solutiontimings and excludes as much overhead as possible.
cargotestTo 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 fmt
cargo clippy
Note
This command requiresinstalling the aoc-cli crate.
# example: `cargo read 1`cargoread<day># output:# Loaded session cookie from "/Users/<snip>/.adventofcode.session".# Fetching puzzle for day 1, 2022...# ...the input...
To read inputs for previous years, append the--year/-y flag.(example:cargo read 1 --year 2020)
- Install
aoc-clivia cargo:cargo install aoc-cli --version 0.7.0 - Create an
.adventofcode.sessionfile 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 thesessioncookie value.
Once installed, you can use thedownload command.
Uncomment theformat job in theci.yml workflow to enable fmt checks in CI.
Uncomment theclippy job in theci.yml workflow to enable clippy checks in CI.
This template includesa 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 clickPrivate Leaderboard. If you have not created a leaderboard yet, create one by clickingCreate It. Your leaderboard should be accessible underhttps://adventofcode.com/{year}/leaderboard/private/view/{aoc_user_id}.
Go to theSecrets tab in your repository settings and create the following secrets:
AOC_ENABLED: This variable controls whether the workflow is enabled. Set it totrueto enable the progress tracker.AOC_USER_ID: Go tothis 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 thesessioncookie.
✨ You can now run this action manually via theRun workflow button on the workflow page. If you want the workflow to run automatically, uncomment theschedule section in thereadme-stars.yml workflow file or add apush trigger.
- Installrust-analyzer andCodeLLDB.
- Set breakpoints in your code.3
- ClickDebug next to the unit test or themain function.4
- The debugger will halt your program at the specific line and allow you to inspect the local stack.5
- itertools: Extends iterators with extra methods and adaptors. Frequently useful for aoc puzzles.
- regex: Official regular expressions implementation for Rust.
A curated list of popular crates can be found onblessred.rs.
Do you have aoc-specific crate recommendations?Share them!
- Integer overflows: This template uses 32-bit integers by default because it is generally faster - for example when packed in large arrays or structs - than using 64-bit integers everywhere. For some problems, solutions for real input might exceed 32-bit integer space. While this is checked and panics in
debugmode, integerswrap inreleasemode, leading to wrong output when running your solution.
Footnotes
The session cookie might expire after a while (~1 month) which causes the downloads to fail. To fix this issue, refresh the
.adventofcode.sessionfile.↩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.↩
↩
↩
↩
About
🎄Starter template for solving Advent of Code in Rust.
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Releases
Sponsor this project
Uh oh!
There was an error while loading.Please reload this page.
Packages0
Languages
- Rust100.0%
