use std::fs; pub mod prelude { pub use std::error::Error; } pub fn read_input(day: usize) -> String { fs::read_to_string(format!("day{}/input", day)).expect("Could not read input") }