Welcome to my Rust Advent of Code 2024 repository! This is where I will be documenting my Rust solutions to the Advent of Code challenges for the year 2024.
| Day | Part 1 | Part 2 |
|---|---|---|
| 1 | ⭐️ | ⭐️ |
| 2 | ⭐️ | ⭐️ |
| 3 | ⭐️ | ⭐️ |
| 4 | ⭐️ | |
| 5 | ⭐️ | |
| 6 | ⭐️ | |
| 7 | ⭐️ | ⭐️ |
| 8 | ⭐️ | |
| 9 | ⭐️ | |
| 10 | ⭐️ | ⭐️ |
| 11 | ⭐️ | ⭐️ |
| 12 | ⭐️ | |
| 13 | ⭐️ | |
| 14 | ⭐️ | |
| 15 | ️ | |
| 16 | ⭐️ | |
| 17 | ||
| 18 | ⭐️ | |
| 19 | ⭐️ | ⭐️ |
| 20 | ||
| 21 | ||
| 22 | ⭐️ | |
| 23 | ⭐️ |
Advent of Code is an annual coding challenge event that runs from December 1st to December 25th. Each day, a new programming puzzle is released, and participants can solve them in any programming language of their choice.
For more information, visit the Advent of Code website.
Each day's solution is contained within its own directory, named dayXX, where XX is the day number. Inside each directory, you will find the following files:
part1.rs- Solution for Part 1 of the day's challenge.part2.rs- Solution for Part 2 of the day's challenge.input.txt- The input data for the day's challenge.
To run the solutions, navigate to the respective day's directory and copy the content of the solution to the main.rs.