pub fn y24d01p1(input: &str) -> u32
The solution for part one of the day one challenge.
TODO
// probably read this from the input file... let input = concat!( "1 2\n", "3 4", ); assert_eq!(y24d01p1(input), 2);