标签:append content solution 代码 class odi pytho title 题目
n<=39
斐波那契数列,即第n项为第n-1项和n-2项的和,可用递归,但复杂度高。直接用一个数组保存之前的项即可。
1 # -*- coding:utf-8 -*- 2 class Solution: 3 def Fibonacci(self, n): 4 ans = [0,1,1,2] 5 while n > len(ans) - 1: 6 ans.append(ans[-1]+ans[-2]) 7 return ans[n]
标签:append content solution 代码 class odi pytho title 题目
原文地址:https://www.cnblogs.com/wangzhihang/p/11781077.html