Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/timvisee/advent-of-code-2017
My go on the advent of code challenge in 2017.
https://github.com/timvisee/advent-of-code-2017
advent-of-code advent-of-code-2017
Last synced: 22 days ago
JSON representation
My go on the advent of code challenge in 2017.
- Host: GitHub
- URL: https://github.com/timvisee/advent-of-code-2017
- Owner: timvisee
- License: mit
- Created: 2017-12-11T15:28:39.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-12-29T00:52:56.000Z (about 7 years ago)
- Last Synced: 2024-11-15T03:28:31.094Z (3 months ago)
- Topics: advent-of-code, advent-of-code-2017
- Language: Rust
- Size: 188 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Advent of Code 2017
My go on the advent of code challenge in 2017 (WIP).This project includes a runner/manager,
that allows easy selection of the solution to run.This runner automatically reads challenge input from the appropriate files when
available, but allows manual input if desired.
Saving output to a file is also possible.Was it required to make a tool?
Nope, but developing things is awesome.## Screenshot
![Screenshot of the tool](screenshot.png)## Requirements
- `Rust 1.20`## Usage
```
# First, clone the project
git clone https://github.com/timvisee/advent-of-code-2017 advent-of-code-2017
cd advent-of-code-2017# Run the tool through Cargo
cargo run --release
cargo run --release -- --help
cargo run --release -- --day 1 --part 2 --save# To run tests, use
cargo test --all
```## Resources
[Advent of Code website](https://adventofcode.com/2017)## License
This project is released under the MIT license.
Check out the [LICENSE](LICENSE) file for more information.