This Week's Worksheet ⬇️
mentor05.pdf
mentor05_sol.pdf
Related Tree Recursions Problems to Review
Steps for writing a tree recursion function
- Base case
- Recursive calls
- Combining recursive calls
** Tree recursions are often used to solve counting problems (hwo many ways are there of doing something?) and optimization problems (what is the maximum or minimum number of ways of doing something?)
Tree Recursion Practice
- Last week's Tree Recursion Practice