Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rootulp/advent-of-code
🎄 Advent of Code solutions
https://github.com/rootulp/advent-of-code
advent-of-code adventofcode
Last synced: 7 days 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 4 years ago)
- Default Branch: main
- Last Pushed: 2022-08-14T16:02:19.000Z (over 2 years ago)
- Last Synced: 2024-06-20T13:39:03.838Z (6 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
[![Build](https://github.com/rootulp/advent-of-code/actions/workflows/go.yml/badge.svg)](https://github.com/rootulp/advent-of-code/actions/workflows/go.yml)
[![License](https://img.shields.io/:license-mit-blue.svg)](https://rootulp.mit-license.org)
[![Go Report Card](https://goreportcard.com/badge/github.com/rootulp/advent-of-code)](https://goreportcard.com/report/github.com/rootulp/advent-of-code)
[![Code Style](https://img.shields.io/badge/code_style-go_fmt-blue.svg)](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).