diff --git a/years/2024/src/day_14.rs b/years/2024/src/day_14.rs --- a/years/2024/src/day_14.rs +++ b/years/2024/src/day_14.rs @@ -49,7 +49,7 @@ } acc }); - Some((dbg!(ur) * dbg!(ul) * dbg!(ll) * dbg!(lr)).to_string()) + Some((ur * ul * ll * lr).to_string()) } fn part_2(input: Self::Input) -> Option { @@ -84,7 +84,7 @@ return Some(i.to_string()); } } - Some("FUCK".to_string()) + panic!("No Tree Womp Womp") } fn parse_input(input: &str) -> Self::Input {