The code for each day is contained in their own folders /day1, /day2. /day3...etc.
Each folders contain:
main.go
to run the inputmain_test.go
to test the samples and other functions- the input and samples for part1 and part2
Other utility functions can be found in util.go
To get started, go the the desired day:
cd day<num>
You can get the results from the input by running:
go run main.go
You can run the tests on the samples and other functions with:
go test