Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

Advent of Code 2020 solutions in Rust
https://github.com/lloydmeta/aoc2020-rs

advent-of-code advent-of-code-2020 aoc2020 rust rust-lang

Last synced: about 2 months ago
JSON representation

Advent of Code 2020 solutions in Rust

Awesome Lists containing this project

README

        

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

Solutions to [Advent of Code 2020](https://adventofcode.com/2020) 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.