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

https://github.com/bh2smith/aoc-rs

Solutions to adventofcode.com 2018 in Rust
https://github.com/bh2smith/aoc-rs

Last synced: about 1 year ago
JSON representation

Solutions to adventofcode.com 2018 in Rust

Awesome Lists containing this project

README

          

# Advent of Code

Solutions to [`adventofcode.com`](adventofcode.com) problems for 2018 in Rust.

## Running

To run all tests for all problems:
```
cargo test
```

To run tests for a specific day:
```sh
cargo test year${YEAR}::day${DAY}
```

To run with actual input:
```sh
export AOC_SESSION=""
cargo run -- ${YEAR} ${DAY}...
```