https://github.com/diagmatrix/advent-2024
Mi solutions for the advent of code 2024
https://github.com/diagmatrix/advent-2024
Last synced: 9 days ago
JSON representation
Mi solutions for the advent of code 2024
- Host: GitHub
- URL: https://github.com/diagmatrix/advent-2024
- Owner: diagmatrix
- Created: 2024-12-10T19:14:03.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-12-14T19:17:13.000Z (7 months ago)
- Last Synced: 2025-04-03T11:45:19.863Z (3 months ago)
- Language: C++
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# advent-2024
Mi solutions for the [advent of code 2024](https://adventofcode.com/2024).
Why C++? It was the first programming language I learnt and I felt nostalgic.
Plus, I am using it in another project, so it helps me remember and learn some
neat stuff :)## Summary
| **Day** | **Solution** | **Stars** |
|:-------:|--------------|-----------|
| 1 | [day 1](src/day_1.cpp) | 2/2 |
| 2 | [day 2](src/day_2.cpp) | 2/2 |
| 3 | [day 3](src/day_3.cpp) | 2/2 |##
## Checking your solutions
To check for the solutions, create the following folder structure with your inputs:
```
data
|-day_1
| |-input.txt
|-day_2
.
.
.
```