This repository includes my Python code solutions for Advent of Code.
This is just for the fun of solving the puzzles and is, by no means, perfect or well-optimized code 😊
If you want to solve the puzzles yourself, please do not cheat yourself out of a fun learning experience by copying code!
- python3
- Navigate to the desired year directory (currently only 2024 is available).
- Create a
XX.txt
file populated with your own input obtained from Advent of Code whereXX
is the day number. For day 1's input, the txt file should be called01.txt
. - Run the corresponding Python Script with
python3 XX.py
whereXX
is the day. For day 1's script, runpython3 01.py
.