An open API service indexing awesome lists of open source software.

https://github.com/dmowcomber/advent-of-code

advent-of-code
https://github.com/dmowcomber/advent-of-code

advent-of-code advent-of-code-2022 advent-of-code-2022-go advent-of-code-2022-golang advent-of-code-go advent-of-code-golang

Last synced: 2 months ago
JSON representation

advent-of-code

Awesome Lists containing this project

README

        

# advent-of-code
[advent-of-code](https://adventofcode.com/)

## Run code using Go tests
Run code using Go tests with verbose mode to see the answers:
```
go test ./... -v
```
or
```
./bin/test
```
Run tests for a single day:
```
go test github.com/dmowcomber/advent-of-code/2022/day5 -v
```
or
```
./bin/test 2022/day5
```