Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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