题解 | #斐波那契数列#

斐波那契数列

http://www.nowcoder.com/practice/c6c7742f5ba7442aada113136ddea0c3

# 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
#
# 
# @param n int整型 
# @return int整型
# 给一个python的,就只会做入门题目......
#一开始用递归超时了,就用了查表
class Solution:
    def Fibonacci(self , n: int) -> int:
        # write code here
        res=[0,1,1]
        if n==1 or n==2:
            return res[n]
        index=3
        while index<=n:
            temp=res[index-1]+res[index-2]
            res.append(temp)
            index+=1
        return res[-1]
全部评论

相关推荐

找不到工作死了算了:没事的,雨英,hr肯主动告知结果已经超越大部分hr了
点赞 评论 收藏
分享
09-29 17:44
已编辑
蔚来_测(准入职员工)
//鲨鱼辣椒:见不了了我实习了四个月上周再投筛选了一天就给我挂了
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务