Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/duckthom/advent-of-code-2024
https://github.com/duckthom/advent-of-code-2024
advent-of-code advent-of-code-2024 advent-of-code-2024-rust advent-of-code-rust
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/duckthom/advent-of-code-2024
- Owner: DuckThom
- Created: 2024-11-21T13:35:07.000Z (3 months ago)
- Default Branch: master
- Last Pushed: 2024-12-25T12:36:31.000Z (about 1 month ago)
- Last Synced: 2024-12-25T13:18:58.359Z (about 1 month ago)
- Topics: advent-of-code, advent-of-code-2024, advent-of-code-2024-rust, advent-of-code-rust
- Language: Rust
- Homepage: https://adventofcode.com/2024
- Size: 171 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advent Of Code 2024: Rust Edition
## Running validation
`cargo test`
## Running real input
> **Note**: Replace `#` with the day number. For example `src/inputs/day_3/input` or `cargo run -- 3`
1. Get your input from [the website](https://adventofcode.com/2024)
2. Place the input string in `src/inputs/day_#>/input`
3. It's possible to run all days or a single one:
1. All days: `cargo run`
2. Single day: `cargo run -- #`> **Tip**: Use `cargo run -r` or `cargo run -r -- #` to run an optimized (faster) release build!
### Auto downloading input
To enable the automatic downloading of your input files, set the env var `AOC_SESSION` to the value of your `session`
cookie.