Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/lloydmeta/aoc2021-rs
- Owner: lloydmeta
- Created: 2021-12-02T07:43:44.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2021-12-20T08:45:15.000Z (about 3 years ago)
- Last Synced: 2024-10-12T09:44:20.564Z (2 months ago)
- Topics: advent-of-code, advent-of-code-2021, aoc-2021-in-rust, aoc2021, rust, rust-lang
- Language: Rust
- Homepage:
- Size: 155 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.