Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/lloydmeta/aoc2021-rs

Advent of Code 2021 solutions in Rust
https://github.com/lloydmeta/aoc2021-rs

advent-of-code advent-of-code-2021 aoc-2021-in-rust aoc2021 rust rust-lang

Last synced: about 1 month ago
JSON representation

Advent of Code 2021 solutions in Rust

Awesome Lists containing this project

README

        

# AoC 2021 in Rust [![aoc2021-rs-CI](https://github.com/lloydmeta/aoc2021-rs/workflows/Continuous%20integration/badge.svg?branch=main)](https://github.com/lloydmeta/aoc2021-rs/actions?query=branch%3Amain)

Solutions to [Advent of Code 2021](https://adventofcode.com/2021) exercises.

Run with `cargo run -- $day` to get the solution for a given `$day`.

```shell
# To run the day 1 exercise
cargo run -- 1
```

## Warning

* Highly unoptimised ...
* Likely not even DRY
* Mostly parsing code to force myself to review parser combinators.