【Leetcode】70. Climbing Stairs

經典的爬樓梯問題 方法1 DP dp法,經典dp,注意初始值即可。 dp法是一種from bottom to top 的方法 class Solution1: def climbStairs(self, n): """ :type n: int :rtype: int """ if n == 1: return 1 i
相關文章
相關標籤/搜索