斐波那契数列 本文最后更新于:2024年7月6日 早上 问题描述输入一个整数 nn ,求斐波那契数列的第 nn 项。 假定从0开始,第0项为0。(nn<=39) 样例123输入整数 n=5 返回 5 解决方案123456789101112class Solution(object): def Fibonacci(self, n): """ :type n: int :rtype: int """ tempArray = [0, 1] if n >= 2: for i in range(2, n+1): tempArray[i%2] = tempArray[0] + tempArray[1] return tempArray[n%2] 计算机技术 #算法 #剑指offer 斐波那契数列 https://yance.wiki/feibonacii/ 作者 Yance Huang 发布于 2019年9月3日 许可协议 Django——微信消息推送 上一篇 八月杂记 下一篇 Please enable JavaScript to view the comments