Welcome to my solutions for Advent of Code 2024! This repository contains my personal solutions to the daily coding challenges.
Each day's solution is contained within its own directory under the solutions
folder. The structure is as follows:
solutions/
├── day01/
│ ├── part1.py
│ └── part2.py
├── day02/
│ ├── part1.py
│ └── part2.py
...
To run a specific day's solution, navigate to the corresponding directory and execute the Python script. For example, to run the solution for Day 1, Part 1:
cd solutions/day01
python part1.py
- Python 3.8+
- Any additional dependencies will be listed in a
requirements.txt
file within each day's directory.
Feel free to fork this repository and submit pull requests if you have improvements or alternative solutions.
This project is licensed under the MIT License. See the LICENSE file for details.
- Advent of Code by Eric Wastl