Question: In dynamic programming, what is the primary advantage of using a bottom-up approach over a top-down approach?
Options:
Correct Answer: Less memory usage
Solution:
The bottom-up approach typically uses less memory than the top-down approach because it avoids the overhead of recursive calls.