fix whitespace

main
Ray Slakinski 2020-12-03 14:26:31 -05:00
parent a9cffc9cf8
commit a0f7d2f25a
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
fn main() {
let mut v: Vec<i32> = Vec::new();
let mut v: Vec<i32> = Vec::new();
let contents = std::fs::read_to_string("input1").unwrap();
for s in contents.lines() {
v.push(s.parse::<i32>().unwrap());