Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 446 Bytes

README.md

File metadata and controls

23 lines (15 loc) · 446 Bytes

Advent of Code 2019

My attempt at solving the series of programming puzzles from Advent of Code, in Go.

Running

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.

Tests

Some tests are usually provided for the days modules :

# in the module directory for a day
go test -v