diff --git a/2020/day_1/src/main.rs b/2020/day_1/src/main.rs index 8a24949..906f7b6 100644 --- a/2020/day_1/src/main.rs +++ b/2020/day_1/src/main.rs @@ -1,5 +1,5 @@ fn main() { - let mut v: Vec = Vec::new(); + let mut v: Vec = Vec::new(); let contents = std::fs::read_to_string("input1").unwrap(); for s in contents.lines() { v.push(s.parse::().unwrap());