Answer: Computing the nth Fibonacci number
Explanation: The bottom-up approach in dynamic programming involves solving smaller subproblems first and storing their solutions in memory, then using those solutions to solve larger problems. This approach is well-suited to problems like computing the nth Fibonacci number, where the solutions to smaller subproblems can be used to efficiently compute the solution to the overall problem.