In this repository, I will upload all the problems I manage to solve in Advent of Code 2023. It's all done for fun, so I'll tackle some in Python and others in C++, depending on how I feel that day. Fun is the key! 🐒
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>.pyFor 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| Day | Name | Stars |
|---|---|---|
| 01 | trebuchet | ⭐⭐ |
| 02 | cubeConundrum | ⭐⭐ |
| 03 | gearRatios | ⭐⭐ |
| 04 | scratchcards | ⭐⭐ |
| 05 | seeds | ⭐ |
| 06 | waitForIt | ⭐⭐ |
| 07 | cards | ⭐⭐ |
| 08 | hauntedWasteland | ⭐ |
| 09 | mirage | ⭐⭐ |
| 10 | pipeMaze | ⭐⭐ |
| 11 | cosmicExpansion | ⭐ ⭐ |
| 12 | hotSprings | ⭐ ⭐ |
| 13 | incidence | ⭐ ⭐ |
| 14 | parabolic | ⭐ |
| 15 | lensLib | ⭐ ⭐ |
| 16 | lava | ⭐ ⭐ |
| 17 | crucibles | ⭐ ⭐ |
| 18 | lavaduct | ⭐ ⭐ |
| 19 | aplenty | ⭐ |
| 20 | pulseProp | ⭐ |
- To solve all the problems
- Keep the pace of a problem per day