Welcome to my Advent of Code 2024 solutions repository!
Advent of Code is an annual coding challenge that runs throughout December. Each day, a new puzzle is released with a festive twist, offering a fun way to practice problem-solving and sharpen coding skills.
- C++: My primary language for solving most puzzles.
- Python: Used for problems requiring arbitrary precision.
AdventOfCode2024/
├── Solutions/
│ ├── Day01/
│ │ ├── day1-part1.cpp
│ │ └── day1-part2.cpp
│ └── Day02/
│ ├── day2-part1.cpp
│ └── day2-part2.cpp
├── .gitignore
└── README.md # This file
Each folder under Solutions
corresponds to a day of the challenge. Solutions for each part of the day's puzzle are stored in separate files.
The solutions in this repository are intended for personal learning and practice. They prioritize competitive programming techniques and may not follow software engineering best practices. Feel free to use them as inspiration for your own Advent of Code journey!