Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/k0nserv/advent-of-rust-2019
Advent of Code 2019 solutions, Rust as always
https://github.com/k0nserv/advent-of-rust-2019
advent advent-of-code advent-of-code-2019 advent-of-code-2019-rust rust
Last synced: 2 months ago
JSON representation
Advent of Code 2019 solutions, Rust as always
- Host: GitHub
- URL: https://github.com/k0nserv/advent-of-rust-2019
- Owner: k0nserv
- Created: 2019-12-01T19:55:31.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-03-08T17:27:13.000Z (10 months ago)
- Last Synced: 2024-03-08T18:38:34.668Z (10 months ago)
- Topics: advent, advent-of-code, advent-of-code-2019, advent-of-code-2019-rust, rust
- Language: Rust
- Homepage:
- Size: 152 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advent of Rust 2018
> Another year and another advent of code
My implementation of the [Advent of Code](https://adventofcode.com/) puzzles for the 2019 year edition of course in [Rust](https://rust-lang.org/).
## Instructions
### Running all tests
```bash
cargo test
```### Runnin a single day
```bash
cargo test day01
```## Days
+ [Day 1](src/day01.rs)
+ [Day 2](src/day02.rs)
+ [Day 3](src/day03.rs)
+ [Day 4](src/day04.rs)
+ [Day 5](src/day05.rs)
+ [Day 6](src/day06.rs)
+ [Day 7](src/day07.rs)
+ [Day 8](src/day08.rs)
+ [Day 9](src/day09.rs)
+ [Day 10](src/day10.rs)
+ [Day 11](src/day11.rs)
+ [Day 12](src/day12.rs)
+ [Day 13](src/day13.rs)
+ [Day 14](src/day14.rs)
+ [Day 15](src/day15.rs)
+ [Day 16](src/day16.rs)
+ [Day 17](src/day17.rs)
+ [Day 18](src/day18.rs)
+ [Day 19](src/day19.rs)
+ [Day 20](src/day20.rs)
+ [Day 21](src/day21.rs)
+ [Day 22](src/day22.rs)
+ [Day 23](src/day23.rs)
+ [Day 24](src/day24.rs)