Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/svartalf/rust-advent-of-code-2017

Advent of Code 2017 with Rust
https://github.com/svartalf/rust-advent-of-code-2017

advent-of-code advent-of-code-2017 rust

Last synced: 10 days ago
JSON representation

Advent of Code 2017 with Rust

Awesome Lists containing this project

README

        

# Advent of code 2017

Me trying to solve [AoC 2017](http://adventofcode.com/2017) with [Rust](https://www.rust-lang.org).
Most important goal is to create idiomatic Rust code here (if I'll have enough time for that).

Also learn some stuff.

## Running (nightly only)

1. Run tests suite for all days

```bash
cargo test
```

2. Run tests suite for a specific day

```bash
cargo test day01
```

3. Run specific day solver

```bash
cargo run --bin day01
```