use bitand for sets

This commit is contained in:
Joe Ardent 2022-12-03 16:22:48 -08:00
parent ad309f5b33
commit b4bf4e61ad
1 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@ fn parse_input2(input: &str) -> Vec<u32> {
let x: HashSet<char> = HashSet::from_iter(x.chars()); let x: HashSet<char> = HashSet::from_iter(x.chars());
let y = HashSet::from_iter(y.chars()); let y = HashSet::from_iter(y.chars());
let z = HashSet::from_iter(z.chars()); let z = HashSet::from_iter(z.chars());
let xy: HashSet<char> = x.intersection(&y).copied().collect(); let xy = &x & &y;
let common = xy.intersection(&z).next().unwrap(); let common = xy.intersection(&z).next().unwrap();
out.push(get_priority(common)); out.push(get_priority(common));
} }