min(), max(), and sum() and product() are all methods on what?
Front
iterators
Back
How do you mutate a value in a hashmap?
Front
let mut count = HashMap::new();
// later after filling it up
count.entry(num).and_modify(|e| *e = i);
We use and_modify which takes a closure, of which the element is the value at the key of num.