Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/wfxr/advent-of-code-2021

🦀 Rust solutions to AoC 2021
https://github.com/wfxr/advent-of-code-2021

aoc aoc2021

Last synced: about 1 month ago
JSON representation

🦀 Rust solutions to AoC 2021

Awesome Lists containing this project

README

        

# [Advent of Code 2021](https://adventofcode.com/2021/stats)

I am trying to write the solutions

- without `unwrap`
- without `unsafe`
- without dependencies

To run solutions:

```
cargo run --release [day_number]
```

To test solutions:

```
cargo test [day_number]
```

To benchmark solutions:

```
cargo bench [day_number]
```