Slug: dp-memo-01 · Paired reading: Chapter 22
Prompt
Implement fn fib_memo(n: u32) -> u64 with a HashMap cache passed as
&mut. The classic trap is holding a reference from get across a recursive
call that needs insert — structure the code so it compiles without
RefCell.