Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joaocarmo/advent-of-code-go
Advent of Code is an Advent calendar of small programming puzzles for a variety of skill sets and skill levels.
https://github.com/joaocarmo/advent-of-code-go
advent-of-code challenge challenges-solved coding go golang
Last synced: 6 days ago
JSON representation
Advent of Code is an Advent calendar of small programming puzzles for a variety of skill sets and skill levels.
- Host: GitHub
- URL: https://github.com/joaocarmo/advent-of-code-go
- Owner: joaocarmo
- License: mit
- Created: 2021-12-02T22:36:00.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-31T18:07:25.000Z (almost 2 years ago)
- Last Synced: 2024-10-22T11:08:57.859Z (16 days ago)
- Topics: advent-of-code, challenge, challenges-solved, coding, go, golang
- Language: Go
- Homepage:
- Size: 301 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
Advent of Code is an Advent calendar of small programming puzzles for a variety
of skill sets and skill levels.## Calculate the solutions
The solutions can be obtained by running the following command:
```sh
go run . input.txt
```## Create a new puzzle
Use the template provided in the `templates` directory to create a new puzzle.
```sh
cd $YEAR && ./create-new-from-template.sh $DAY
```