Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/svartalf/rust-advent-of-code-2017
- Owner: svartalf
- License: mit
- Created: 2017-12-01T10:44:22.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2017-12-22T15:02:21.000Z (almost 7 years ago)
- Last Synced: 2024-04-16T01:52:55.271Z (7 months ago)
- Topics: advent-of-code, advent-of-code-2017, rust
- Language: Rust
- Size: 73.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```