Skip to content

Latest commit

 

History

History
38 lines (24 loc) · 657 Bytes

README.md

File metadata and controls

38 lines (24 loc) · 657 Bytes

aoc2022

Advent of Code 2022

Testing

go test ./...

Running

This repo builds all the solutions into a single binary. To compile and run:

go build
./aoc2022 <day>

Alternatively:

go run main.go <day>

AWK?

Some of the days have a solution written in AWK. To run the AWK solutions:

./dayXY/dayXY.awk < ./dayXY/input.txt

Dev Container

Have Docker and VS Code? This repo includes a dev container configuration.

The dev container includes all the tools necessary to build and run the Go and AWK solutions.