When writing recursive functions to solve problems, what can you do to make them efficient?
- Have the base case precede the recursive call in the function definition.
- Avoid recomputing subproblems.
- Use as many helper functions as possible.
- Use as few variables as possible.
Recursive functions are always the most efficient way to solve a problem, no matter how they are written.
- False