adventofcode/2018
2018-12-01 22:16:14 -05:00
..
internal/calibration Re-implement a solution for the first day 1 puzzle, move common code into a library package. 2018-12-01 22:13:08 -05:00
day01-1.go Re-implement a solution for the first day 1 puzzle, move common code into a library package. 2018-12-01 22:13:08 -05:00
day01-2.go Re-implement a solution for the first day 1 puzzle, move common code into a library package. 2018-12-01 22:13:08 -05:00
readme.md Add a readme. 2018-12-01 22:16:14 -05:00

2018 Advent of Code solutions

This year, I'll be getting some golang practice.

Running these solutions requires golang 1.11 or newer to build. If your distribution doesn't offer a new enough version, running in docker is as easy as:

docker run --rm -it -v $(pwd):/go/src/ -w /go/src golang:1.11 go build dayXX-X.go