This repository contains polished Python scripts which solve the Advent of Code. As 2019 is the first year I participate, it's the only year for now. YEAR 2 BOY ! I try not to comment anything when I code and instead use clear naming and typing, but comments will be added if something is not clear (e.g. math).
All scripts will be runnable with the following syntax:
python3 script_name.py
The scripts should run with any version of Python 3.6 or above, no external library required. If you want to use your data instead of mine for a given day, simply replace it in the appropriate file. I will include a script for each part except in the case where the script for the second part involves only appending code to the one for the first. Any code reused often will be placed in the utils
directory of the given year (e.g. the IntCode Machine of 2019).
... really ?