fix release build for day 9

This commit is contained in:
kageru 2023-12-10 17:23:50 +01:00
parent cae56e170c
commit 7c980c2648
Signed by: kageru
GPG Key ID: 8282A2BEA4ADA3D2

View File

@ -8,7 +8,7 @@ type I = i64;
type Parsed = Vec<Vec<I>>;
fn parse_input(raw: &str) -> Parsed {
raw.lines().map(|l| parse_nums_separator(l, ' ')).collect()
raw.lines().map(|l| l.split(' ').map(|n| n.parse().unwrap()).collect()).collect()
}
fn build_levels(levels: &mut Parsed) {