Files
adventofcode/2018
2018-12-12 18:20:33 -05:00
..
2018-12-12 18:20:33 -05:00
2018-12-04 03:30:37 -05:00
2018-12-02 00:40:11 -05:00
2018-12-10 21:15:33 -05:00
2018-12-10 21:15:33 -05:00
2018-12-11 19:11:45 -05:00
2018-12-11 19:11:56 -05:00
2018-12-12 15:06:32 -05:00
2018-12-12 15:06:32 -05:00
2018-12-12 16:14:57 -05:00
2018-12-12 16:46:57 -05:00
2018-12-12 18:20:33 -05:00
2018-12-02 00:39:53 -05:00
2018-12-03 16:56:06 -05:00
2018-12-11 19:11:21 -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

The makefile also uses docker, so you can just run:

make dayXX-X