Challenge 5 contains the following confusing line, which is probably a leftover from copying the previous challenge:
let sum = handle.join().unwrap();
It might be worth noting in the solution text that other heap types (such as Rc) can also be used (not just Box).
Challenge 5 contains the following confusing line, which is probably a leftover from copying the previous challenge:
It might be worth noting in the solution text that other heap types (such as
Rc) can also be used (not justBox).