Lab04 solutions (UCB CS61A@2021 Fall)
Intro
I find it really interesting to solve recursive problems. I like this way of solving problems, the code is concise and intuitive, which is why I wrote this blog.
📒 How to solve a recursive problem ?
- What is the base case ?
- How to break down the current problem into simpler ones ?
Later, I will follow this idea to solve the recursion problem in this lab.