Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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)