mod day_01; mod day_02; mod day_03; pub const INPUT_PATH: &str = "./input/2021/day3.txt"; pub fn run(input: String) { day_03::run(input); }