diff --git a/2022-aoc/src/d3.rs b/2022-aoc/src/d3.rs index d189729..eb4ebab 100644 --- a/2022-aoc/src/d3.rs +++ b/2022-aoc/src/d3.rs @@ -30,11 +30,11 @@ fn parse_input2(input: &str) -> Vec { let mut out = Vec::with_capacity(input.len() / 3); let lines: Vec<&str> = input.lines().collect(); for group in lines.chunks_exact(3) { - let [x, y, z] = group else {panic!()}; + let [x, y, z] = group else { panic!() }; let x: HashSet = HashSet::from_iter(x.chars()); let y = HashSet::from_iter(y.chars()); let z = HashSet::from_iter(z.chars()); - let xy: HashSet = x.intersection(&y).copied().collect(); + let xy = &x & &y; let common = xy.intersection(&z).next().unwrap(); out.push(get_priority(common)); }