advent-of-code/2022/rust/src/main.rs

8 lines
71 B
Rust

mod utils;
mod solutions;
fn main() {
solutions::day12::run();
}