aoc2024/src/solutions/mod.rs

11 lines
178 B
Rust
Raw Normal View History

2024-12-01 19:54:24 +07:00
pub mod day_1;
2024-12-02 23:23:48 +07:00
pub mod day_2;
pub trait AocSolution {
type Output;
const INPUT: &str;
fn part_one(&self) -> Self::Output;
fn part_two(&self) -> Self::Output;
}