Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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) |