/adventofcode2017_rs

Advent of Code 2017 in Rust 🦀

Primary LanguageRustMIT LicenseMIT

adventofcode2017_rs

Solutions to the Advent of Code 2017 puzzles in Rust 🦀

Some fine folks on the Exercism.org Discord server wanted to do the Advent of Code 2017 puzzles together. I have already completed those in Kotlin before, but since it's been a while, I figured I could do them again in Rust.

Requirements

  • Rust 1.75.0 or later

Running the tests

All puzzles for each day

cargo test

With slow tests

cargo test --features slow

With tests for utility functions

cargo test --features utils

Both puzzles for one day

cargo test day_01 --all-features

Single puzzle

cargo test day_01_part_1 --all-features