https://github.com/tisba/adventofcode
https://github.com/tisba/adventofcode
advent-of-code golang
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tisba/adventofcode
- Owner: tisba
- Created: 2018-12-01T14:02:19.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2024-12-20T14:35:36.000Z (7 months ago)
- Last Synced: 2025-01-20T15:49:01.269Z (6 months ago)
- Topics: advent-of-code, golang
- Language: Ruby
- Homepage: https://adventofcode.com/
- Size: 1.76 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advent of Code
Each day has its own directory with a full golang project.
To run code for a day, cd into that day and run
```terminal
go run main.go
```To execute tests and benchmarks:
```terminal
go test -v --bench . --benchmem --cover
```