Climbing Stairs Mar 24th, 2016 12:00 am 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? Example Given an example n=3 , 1+1+1=2+1=1+2=3 return 3 Solution (Climbing-Stairs.py) download 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 class Solution: """ @param n: An integer @return: An integer """ def climbStairs(self, n): # write your code here if n == 0: return 1 dp = [0 for i in range(n+1)] dp[0] = 1 dp[1] = 1 for i in range(2,n+1): dp[i] = dp[i-1] + dp[i-2] return dp[n]