https://github.com/rootulp/advent-of-code
🎄 Advent of Code solutions
https://github.com/rootulp/advent-of-code
advent-of-code adventofcode
Last synced: 10 months ago
JSON representation
🎄 Advent of Code solutions
- Host: GitHub
- URL: https://github.com/rootulp/advent-of-code
- Owner: rootulp
- License: mit
- Created: 2020-12-01T17:50:43.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2022-08-14T16:02:19.000Z (over 3 years ago)
- Last Synced: 2025-02-14T10:43:43.902Z (12 months ago)
- Topics: advent-of-code, adventofcode
- Language: Go
- Homepage: https://adventofcode.com
- Size: 391 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# advent-of-code
[](https://github.com/rootulp/advent-of-code/actions/workflows/go.yml)
[](https://rootulp.mit-license.org)
[](https://goreportcard.com/report/github.com/rootulp/advent-of-code)
[](https://golang.org/cmd/gofmt/)
[Advent of Code](https://adventofcode.com) solutions
## Getting Started
If you are new to Advent of Code, you can get started at [adventofcode.com](https://adventofcode.com/).
## Local Development
Create a new solution directory based on these [docs](https://golang.org/doc/code.html):
```bash
mkdir 2020/day2
cd 2020/day2
```
Run an individual solution with
```bash
go run day1.go
```
Run unit tests
```bash
go test
```
## Contribute
I'd appreciate any feedback via [issues](https://github.com/rootulp/advent-of-code/issues/new).