Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rjray/advent-2024-rust
Advent of Code 2024 (Rust)
https://github.com/rjray/advent-2024-rust
Last synced: 9 days ago
JSON representation
Advent of Code 2024 (Rust)
- Host: GitHub
- URL: https://github.com/rjray/advent-2024-rust
- Owner: rjray
- License: mit
- Created: 2024-12-01T20:15:58.000Z (21 days ago)
- Default Branch: main
- Last Pushed: 2024-12-01T20:19:03.000Z (21 days ago)
- Last Synced: 2024-12-01T21:25:06.763Z (21 days ago)
- Language: Rust
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# advent-2024-rust
This is my code for the 2024 [Advent of Code](https://adventofcode.com/2024),
all solutions in [Rust](https://www.rust-lang.org/).All code is under the `src` directory. Each solution-file is named `dayNN.rs`
and contains both puzzle solutions for that day. These are the
publically-facing functions `part1` and `part2`. Unlike the code I use to
actually do the AoC challenge, this is written well after the fact.## Usage
This project is managed with [Cargo](https://doc.rust-lang.org/cargo/). Running
the following will download any dependencies and build the executable:```
cargo build
```