Welcome to my Advent of Code 2024 solutions repository! This repository contains my solutions to the daily programming puzzles released as part of Advent of Code 2024.
Advent of Code is an annual series of coding challenges that take place every December. It's designed to be fun and engaging, offering challenges that range from beginner-friendly to highly advanced. Each day, a new puzzle is unlocked, providing an opportunity to improve your problem-solving and coding skills.
This repository is organized by day, with each folder representing a single day of the challenge. Each folder typically contains:
input.py
: The puzzle input provided for the day.solution.py
: My Python implementation of the solution.README.md
: A brief explanation of the problem and the approach taken to solve it (optional).
Example structure:
/
├── day01/
│ ├── input.py
│ ├── solution.py
│ ├── README.md
├── day02/
│ ├── input.py
│ ├── solution.py
│ ├── README.md
...
-
Clone the repository:
git clone https://github.com/Neluxx/advent-of-code-2024.git cd advent-of-code-2024
-
Navigate to the desired day's folder:
cd day01
-
Run the Python solution script:
python solution.py
All solutions in this repository are implemented using Python 3.
Feel free to fork this repository, explore the solutions, and share your feedback or improvements. Contributions are welcome, but keep in mind that this is primarily a personal project.
- Thanks to Eric Wastl for creating Advent of Code.
- Thanks to the AoC community for sharing insights and encouragement.
This repository is licensed under the MIT License. See the LICENSE file for more details.
🎅 Happy Coding, and enjoy the holiday spirit! 🎄