My personal solutions to Advent of Code 2024, written in Python with my custom aoc_utils library.
Disclaimer: These solutions have been built and tested against my own inputs. I cannot guarantee this works with all possible permutations.
Git clone (with submodules to pull aoc_utils):
$ git clone --recurse-submodules https://github.com/EdwardJXLi/AdventOfCode2024.git
Change directory into a challenge day and run main.py
:
$ cd DayX
$ python3 main.py input.txt
...
Note: You will need to download the input
input.txt
into the day's folder.