Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/lloydmeta/aoc2020-rs
- Owner: lloydmeta
- Created: 2020-12-01T13:13:25.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2020-12-21T10:38:26.000Z (about 4 years ago)
- Last Synced: 2024-10-12T09:44:20.766Z (3 months ago)
- Topics: advent-of-code, advent-of-code-2020, aoc2020, rust, rust-lang
- Language: Rust
- Homepage:
- Size: 137 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.