Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/svisser/advent-of-code-2018
- Owner: svisser
- Created: 2018-12-26T18:09:04.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2018-12-28T16:18:45.000Z (almost 6 years ago)
- Last Synced: 2024-11-01T08:25:54.191Z (about 2 months ago)
- Topics: advent-of-code-2018, rust
- Language: Rust
- Size: 9.77 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```