Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/wfxr/advent-of-code-2021
- Owner: wfxr
- Created: 2021-12-01T10:49:10.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-12-04T14:06:03.000Z (11 months ago)
- Last Synced: 2024-08-02T16:55:51.454Z (3 months ago)
- Topics: aoc, aoc2021
- Language: Rust
- Homepage:
- Size: 188 KB
- Stars: 4
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 dependenciesTo run solutions:
```
cargo run --release [day_number]
```To test solutions:
```
cargo test [day_number]
```To benchmark solutions:
```
cargo bench [day_number]
```