Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/svisser/advent-of-code-2018

Advent of Code 2018 solutions in Rust
https://github.com/svisser/advent-of-code-2018

advent-of-code-2018 rust

Last synced: 4 days ago
JSON representation

Advent of Code 2018 solutions in Rust

Awesome Lists containing this project

README

        

Advent of Code 2018 solutions
=============================

Learning Rust by solving Advent of Code 2018 problems.

I have annotated variables with their types to see what's going on.

To run:

```
cargo run --bin adventXX
```

For example:

```
cargo run --bin advent01
```

A filepath can be passed for some solutions:

```
cargo run --bin advent03 -- src/03/input.txt
```

Some solutions also have tests:

```
cargo test --bin advent05
```