Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/diagmatrix/advent-2024
Mi solutions for the advent of code 2024
https://github.com/diagmatrix/advent-2024
Last synced: 25 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 (about 1 month ago)
- Default Branch: main
- Last Pushed: 2024-12-10T20:39:07.000Z (about 1 month ago)
- Last Synced: 2024-12-10T21:29:19.512Z (about 1 month ago)
- Language: C++
- Size: 3.91 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
.
.
.
```