pub fn part1() -> usize { 0 } #[cfg(test)] mod tests { use super::*; #[test] fn test_part1() { assert_eq!(part1(), 0); } }