Climbing Stairs
Description
You are climbing a stair case. It takes n steps to reach to the top.
Each time you can either climb 1 or 2 steps. In how many distinct ways can you climb to the top?
Note: Given n will be a positive integer.
Example 1:
Example 2:
Solution
Let dp[i]
denote the number of ways to climb to stair .
Recursive formula: dp[i] = dp[i-1] + dp[i-2]
.
Base cases: dp[0] = dp[1] = 1
.
Last updated