Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wojwozniak/advent-of-code-2024
Solving 2024 AOC challenges using Rust
https://github.com/wojwozniak/advent-of-code-2024
advent-of-code aoc rust
Last synced: 3 days ago
JSON representation
Solving 2024 AOC challenges using Rust
- Host: GitHub
- URL: https://github.com/wojwozniak/advent-of-code-2024
- Owner: wojwozniak
- Created: 2024-12-01T13:02:07.000Z (21 days ago)
- Default Branch: main
- Last Pushed: 2024-12-09T10:30:48.000Z (13 days ago)
- Last Synced: 2024-12-09T11:35:02.750Z (13 days ago)
- Topics: advent-of-code, aoc, rust
- Language: Rust
- Homepage:
- Size: 78.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# AOC 2024 Solutions
This repository contains my solutions to the Advent of Code 2024 challenges, written in Rust. Each day's solution is stored in the `/src/` folder as `problem{nn}.rs`.
## Solutions
| Day | Problem | Solution |
| --- | -------------------------------------------------- | ------------------------------------------- |
| 01 | [Problem 01](https://adventofcode.com/2024/day/1) | [Solution](src/problem01.rs) |
| 02 | [Problem 02](https://adventofcode.com/2024/day/2) | [Solution](src/problem02.rs) |
| 03 | [Problem 03](https://adventofcode.com/2024/day/3) | [Solution](src/problem03.rs) |
| 04 | [Problem 04](https://adventofcode.com/2024/day/4) | [Solution](src/problem04.rs) |
| 05 | [Problem 05](https://adventofcode.com/2024/day/5) | [Solution](src/problem05.rs) |
| 06 | [Problem 06](https://adventofcode.com/2024/day/6) | [Solution](src/problem06.rs) |
| 07 | [Problem 07](https://adventofcode.com/2024/day/7) | [Solution](src/problem07.rs) |
| 08 | [Problem 08](https://adventofcode.com/2024/day/8) | [Solution](src/problem08.rs) |
| 09 | [Problem 09](https://adventofcode.com/2024/day/9) | [Solution (first part)](src/problem09.rs) |
| 10 | [Problem 10](https://adventofcode.com/2024/day/10) | [Solution (not yet here)](src/problem10.rs) |
| 11 | [Problem 11](https://adventofcode.com/2024/day/11) | [Solution](src/problem11.rs) |