美文网首页
509. Fibonacci Number [Easy] 斐波纳

509. Fibonacci Number [Easy] 斐波纳

作者: 一个想当大佬的菜鸡 | 来源:发表于2019-06-01 10:44 被阅读0次
    509. Fibonacci Number
    class Solution(object):
        def fib(self, N):
            """
            :type N: int
            :rtype: int
            """
            a, b = 0, 1
            while N > 0:
                N -= 1
                b = a + b
                a = b - a
            return a
    

    相关文章

      网友评论

          本文标题:509. Fibonacci Number [Easy] 斐波纳

          本文链接:https://www.haomeiwen.com/subject/rulotctx.html