My attempt at solving the series of programming puzzles from Advent of Code, in Go.
To build the code for a day :
# in the directory for the day
go build -o bin/some_binary_name .
To obtain the answers for my input, run the produced binary.
Some tests are usually provided for the days modules :
# in the module directory for a day
go test -v