Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/huzecong/advent-of-nim-2021
Solutions to Advent of Code 2021, in Nim
https://github.com/huzecong/advent-of-nim-2021
advent-of-code advent-of-code-2021 nim
Last synced: about 1 month ago
JSON representation
Solutions to Advent of Code 2021, in Nim
- Host: GitHub
- URL: https://github.com/huzecong/advent-of-nim-2021
- Owner: huzecong
- Created: 2021-12-03T21:46:37.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2022-09-05T00:03:27.000Z (over 2 years ago)
- Last Synced: 2024-11-12T15:39:53.879Z (3 months ago)
- Topics: advent-of-code, advent-of-code-2021, nim
- Language: Nim
- Homepage:
- Size: 82 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advent of Code 2021
Solutions to [Advent of Code 2021](https://adventofcode.com/2021), implemented in [Nim](https://nim-lang.org/).
To run:
```bash
$ nimble run --silent -- day1 --profile
Solving problem day1
Part 1 took 0.000s
Part 1 answer: 1665
Part 2 took 0.003s
Part 2 answer: 1702
```
Or, verify all solutions through unit tests:
```bash
$ nimble test
```