mirror of
https://github.com/bertptrs/adventofcode.git
synced 2025-12-25 21:00:31 +01:00
12 lines
211 B
Markdown
12 lines
211 B
Markdown
# Day 08: Go
|
|
|
|
Nice puzzle, got to use an obscure data structure. And implement it, because Go doesn't have it in
|
|
its standard library.
|
|
|
|
```console
|
|
$ go build
|
|
$ ./solve sample.txt 10
|
|
Part 1: 40
|
|
Part 2: 25272
|
|
```
|