Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vonr/aoc-rs
Advent of Code solutions in Rust
https://github.com/vonr/aoc-rs
Last synced: about 1 month ago
JSON representation
Advent of Code solutions in Rust
- Host: GitHub
- URL: https://github.com/vonr/aoc-rs
- Owner: Vonr
- Created: 2022-12-03T10:41:59.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-12-13T01:16:50.000Z (about 1 year ago)
- Last Synced: 2023-12-13T08:29:50.852Z (about 1 year ago)
- Language: Rust
- Size: 446 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advent of Code Rust Solutions
This repository contains the solutions I used for Advent of Code, written in Rust.
Note that I may not be able to finish all the challenges in Advent of Code.
Special thanks to [B3NNY/Ben-Lichtman](https://github.com/Ben-Lichtman) for [aoc_driver](https://github.com/Ben-Lichtman/aoc_driver)
This repository also contains a CLI, made using [aoc_driver](https://github.com/Ben-Lichtman/aoc_driver) that allows me to run each solution without changine what runs manually.
The usage is as follows:
```sh
aoc-rs [-p]
```The flag `-p` must be put after the year, day, and part and will automatically submit the calculated answer.
Note that Advent of Code enforces some rate limits so it is advisable to not spam it.
The CLI is far from user-proof and may crash.
Downloading of inputs and submission of answers is handled by [aoc_driver](https://github.com/Ben-Lichtman/aoc_driver)