Advent of Code solutions

Day 14 clean

bwc9876.dev eab508d5 ad295a7e

verified
+2 -2
+2 -2
years/2024/src/day_14.rs
··· 49 49 acc 50 50 }); 51 51 52 - Some((dbg!(ur) * dbg!(ul) * dbg!(ll) * dbg!(lr)).to_string()) 52 + Some((ur * ul * ll * lr).to_string()) 53 53 } 54 54 55 55 fn part_2(input: Self::Input) -> Option<String> { ··· 84 84 } 85 85 } 86 86 87 - Some("FUCK".to_string()) 87 + panic!("No Tree Womp Womp") 88 88 } 89 89 90 90 fn parse_input(input: &str) -> Self::Input {