tAoC2023/src/problems/day01/common.rs
2023-12-02 11:42:03 +11:00

3 lines
58 B
Rust

pub type Int = u32;
pub type Line = (Vec<Int>, Vec<Int>);