DEVELOPMENT ENVIRONMENT

~liljamo/aoc2024

ref: e7712b210e6f57dad3ec2170862538c4ee3b118e aoc2024/src/day8/mod.rs -rw-r--r-- 220 bytes
e7712b21Jonni Liljamo chore: clippy, because i can't just keep ignoring it 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(())
}