Fibonacci Number DSAleetcodepython3 May 24 Written By Ron Yue I did this Leetcode. Here is my code: class Solution(object): def fib(self, n): """ :type n: int :rtype: int """ if n == 1 or n == 0: return n return self.fib(n-1) + self.fib(n-2) DSAleetcodepython3 Ron Yue
Fibonacci Number DSAleetcodepython3 May 24 Written By Ron Yue I did this Leetcode. Here is my code: class Solution(object): def fib(self, n): """ :type n: int :rtype: int """ if n == 1 or n == 0: return n return self.fib(n-1) + self.fib(n-2) DSAleetcodepython3 Ron Yue