advent2021/README.md

22 lines
630 B
Markdown
Raw Permalink Normal View History

2021-12-06 19:34:46 +00:00
[![Unit tests](https://github.com/zoeisnowooze/advent2021/actions/workflows/ci.yml/badge.svg)](https://github.com/zoeisnowooze/advent2021/actions/workflows/ci.yml)
Solvers for the [2021 Advent of Code](https://adventofcode.com/2021/) festive programming puzzles.
## Installation
Install the Rust toolchain to build the daily problem solvers. Go to the [rustup](https://rustup.rs/) page and follow the instructions.
## Usage
You can run the unit tests for all the daily problems
```bash
cargo test
```
and then run individual solvers by specifying the name of the daily binary, for example
```bash
cargo run --bin day6
```