here are my solutions to the Advent of Code problems
my current and not-so-optimal process:
- copy the template
day00
to the new day; cd into the day - fill in
example.txt
andinput.txt
- fill in the expected answer for
TestPart1Example
- implement solution for
Part1
go test -v
orgo test -v -run Part1
- if
TestPart1Example
passed, check result forTestPart1Actual
on site - fill in the expected answer for
TestPart1Actual
- repeat from step 3 for part 2