/aoc

Advent of Code 2022

Primary LanguageScalaGNU General Public License v3.0GPL-3.0

Advent of Code

My solutions for Advent of Code problems.

Running the code

Scala

You can run the code for any day with the following:

> sbt $day
# Example
> sbt day01

Rust

You can run any binary defined in the Cargo.toml file with the following:

> cargo run --bin $day -- ../$day.txt
# Example
> cargo run --bin day01 -- ../day01.txt