Personal solutions to the Advent of Code puzzles for Michael Mraz
All code reads inputs from a file named input
and prints the answer to STDOUT
Interaction with the website is done using aoc-cli
cd <year>/day##
aoc read 1 -y <year> -d ##
aoc download -y <year> -d ##
aoc submit 1 $(./part1.py) -y <year> -d ##
aoc submit 2 $(./part2.py) -y <year> -d ##
There are starter template files for several languages to read the input
into a variable. Copy one for your language of choice into the day's
directory as an easy starting point for your solution.
Advent of Code is a free online Advent calendar of small programming puzzles created by Eric Wastl and maintained by volunteers. Please consider supporting their work.