DEVELOPMENT ENVIRONMENT

~liljamo/aoc2024

ref: 6aac5b0c9e2301b47075fe0fcb317f507d16e504 aoc2024/src/day9/mod.rs -rw-r--r-- 220 bytes
6aac5b0cJonni Liljamo feat: day9 a month ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
use std::path::Path;

mod part1;
mod part2;

pub fn solve(input: &Path) -> anyhow::Result<()> {
    println!("part one: {}", part1::part_one(input)?);
    println!("part two: {}", part2::part_two(input)?);

    Ok(())
}