https://github.com/mugimaru/adventofcode-golang
Advent Of Code solutions
https://github.com/mugimaru/adventofcode-golang
advent-of-code golang
Last synced: about 2 months ago
JSON representation
Advent Of Code solutions
- Host: GitHub
- URL: https://github.com/mugimaru/adventofcode-golang
- Owner: mugimaru
- License: mit
- Created: 2020-05-17T18:43:38.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-12-02T09:53:42.000Z (over 1 year ago)
- Last Synced: 2025-03-05T23:45:04.179Z (over 1 year ago)
- Topics: advent-of-code, golang
- Language: Go
- Homepage: https://adventofcode.com
- Size: 259 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# [Advent of Code](https://adventofcode.com/): [Go](https://golang.org/)
## Build
```sh
make
```
## Run
Solve first puzzle of year 2019
```sh
./aoc
```
Solve second puzzle of year 2020
```sh
./aoc -year 2020 -day 2
```
Custom input
```sh
./aoc -year 2019 -day 3 -path /path/to/custom/input.txt
```