Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/amy-keibler/advent-of-code-2019
Advent of Code 2019 Solution Implementations
https://github.com/amy-keibler/advent-of-code-2019
advent-of-code advent-of-code-2019 rust
Last synced: 8 days ago
JSON representation
Advent of Code 2019 Solution Implementations
- Host: GitHub
- URL: https://github.com/amy-keibler/advent-of-code-2019
- Owner: amy-keibler
- Created: 2019-12-02T14:23:58.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-01-02T15:19:07.000Z (about 5 years ago)
- Last Synced: 2025-01-15T01:00:05.539Z (10 days ago)
- Topics: advent-of-code, advent-of-code-2019, rust
- Language: Rust
- Size: 34.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# advent-of-code-2019
![Rust test status badge](https://github.com/amy-keibler/advent-of-code-2019/workflows/Rust/badge.svg)
A rust implementation of the [Advent of Code 2019](https://adventofcode.com/2019) puzzle solutions
## Project Layout
Folder | Purpose
---------------|--------
`src/bin/*.rs` | contains the individual files for each day's problem (usually left in the state required to solve the second part of the puzzle)
`src/*.rs` | contains the common modules that are used for multiple days' puzzles## Project Execution
Each day is compiled as a separate binary, so executing day three's puzzle would be `cargo run --bin day-three`. Tests can be run via the usual `cargo test`.