fix possible off-by-one

This commit is contained in:
Joe Ardent 2022-12-01 14:23:20 -08:00
parent 5dfd5512e5
commit ed6315374e
1 changed files with 1 additions and 0 deletions

View File

@ -15,6 +15,7 @@ fn parse_input_day1(input: &str) -> Beep {
cur = 0; cur = 0;
} }
} }
out.push(cur);
out out
} }