-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpart_two.rs
58 lines (51 loc) · 1.77 KB
/
part_two.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
use std::collections::HashSet;
use std::error::Error;
// Main program entty.
fn main() -> Result<(), Box<dyn Error>> {
// Total result sum.
let mut total_sum: u32 = 0;
// Read input file into String.
let file = std::fs::read_to_string("../input.txt")?;
let lines: Vec<&str> = file.lines().collect();
// For each new line.
for chunk in lines.chunks(3) {
// Transform strs into slices of bytes.
let first_member = chunk[0].as_bytes();
let second_member = chunk[1].as_bytes();
let third_member = chunk[2].as_bytes();
// Create a Set out of the first member.
let mut a: HashSet<u8> = HashSet::new();
for v in first_member {
a.insert(*v);
}
// Create a Set out of the second member.
let mut b: HashSet<u8> = HashSet::new();
for v in second_member {
b.insert(*v);
}
// Create a Set out of the third member.
let mut c: HashSet<u8> = HashSet::new();
for v in third_member {
c.insert(*v);
}
// B&C intersection vector.
let b_c_intersection: Vec<&u8> = b.intersection(&c).collect();
// Create a Set out of the second and third intersection.
let mut bc: HashSet<u8> = HashSet::new();
for v in b_c_intersection {
bc.insert(*v);
}
// Find intersection of three sets, that's our common item.
for v in a.intersection(&bc) {
// Calculate priority for each item and add it to the total sum.
if *v > 96 {
total_sum += u32::from(*v) - 96;
} else {
total_sum += u32::from(*v) - 38;
}
}
}
// Print the result!
println!("Total Sum: {total_sum}");
Ok(())
}