Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```