当前位置 : 主页 > 编程语言 > java >

【Leetcode 70】爬楼梯

来源:互联网 收集:自由互联 发布时间:2022-06-30
解题思路 class Solution : def climbStairs ( self , n : int ) - int : f = [ 1 , 2 ] for i in range ( 2 , n ): f . append ( f [ i - 1 ] + f [ i - 2 ]) return f [ n - 1 ] 参考链接 ​​​ https://leetcode-cn.com/problems/climbing-sta

【Leetcode 70】爬楼梯_python
解题思路
【Leetcode 70】爬楼梯_python_02

class Solution:
def climbStairs(self, n: int) -> int:
f = [1, 2]
for i in range(2, n):
f.append(f[i-1] + f[i-2])
return f[n-1]

参考链接
​​​ https://leetcode-cn.com/problems/climbing-stairs/solution/solution-python3-by-bu-zhi-dao-gan-sha/​​


上一篇:【Leetcode 136】 只出现一次的数字
下一篇:没有了
网友评论