This repository is to store all the solved problems of the Advent of Code 2024. This year I'm going to solve the odd problems using Python and the even ones using C++.
Each day indicates in the folder name the language used to solve the problem. For the python days, python3 have been used. To execute the python solutions:
python3 <scriptName>.py
For the C++ solutions, Clang 14 for C++20 have been used. First, you need to compile and the run the executable.
clang++ -std=c++20 <sourceCodeName>.cpp -o <executableName>
./executableName
Remember to load the inputs from the AoC page since I haven't uploaded them to reduce storage usage. |
Day | Name | Stars |
---|---|---|
01 | Historian Hysteria | ⭐⭐ |
02 | Red-Nosed Reports | ⭐⭐ |
03 | Mull It Over | ⭐⭐ |
04 | Ceres Search | ⭐⭐ |
05 | Print Queue | ⭐⭐ |
06 | Guard Gallivant | ⭐⭐ |
07 | Bridge Repair | ⭐⭐ |
08 | Resonant Collinearity | ⭐⭐ |
09 | Disk Fragmenter | ⭐⭐ |
10 | Hoof It | ⭐⭐ |
11 | Plutonian Pebbles | ⭐⭐ |
12 | Garden Groups | ⭐⭐ |
13 | Claw Contraption | ⭐⭐ |
14 | Restroom Redoubt | ⭐⭐ |
15 | Warehouse Woes | ⭐⭐ |
16 | Reindeer Maze | ⭐⭐ |
17 | Chronospatial Computer | ⭐⭐ |
18 | RAM Run | ⭐⭐ |
19 | Linen Layout | ⭐⭐ |
20 | Race Condition | ⭐⭐ |
This is the generated image after finishing 20 of 25 problems: