Python project for Advent of Code solutions.
lib/- Common library code and utilitiesday01.pythroughday31.py- Individual solution files for each dayinputs/- Directory for input files (e.g.,day01.txt,day02.txt, etc.)
Run a specific day's solution:
python day01.pyThe lib package contains common utilities:
read_input(filename)- Read entire file as stringread_lines(filename)- Read file as list of linesread_integers(filename)- Read file as list of integers