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: 4 months 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 (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-01-02T15:19:07.000Z (over 5 years ago)
- Last Synced: 2025-02-27T13:20:32.727Z (4 months 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

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`.