Answers for "what is a fibonacci series"

5

fibonacci series

//basic fibonacci series
0, 1, 1, 2, 3, 5, 8, 13, 21, ...
Posted by: Guest on August-07-2021
3

fibonacci series

// Fibonacci Series
0,1,1,2,3,5,8,13,21,34,55,89,144......
Posted by: Guest on June-11-2021
1

Fibonacci series

//to find nth fibonacci number(recursive solution)
class Solution {
    public int fib(int n) {
     if(n==0){
         return 0;
     }
        if(n==1){
            return 1;
        }
        if(n==2){
            return 1;
        }
        return fib(n-1)+fib(n-2);
    }
}
Posted by: Guest on April-26-2021
1

fibinachi

def fib(n):
  lisp = []
  
  for i in range(n):
    if len(lisp) < 3:
      if len(lisp) == 0:
        lisp.append(0)
      else:
        lisp.append(1)
    
    else:
      lisp.append(lisp[len(lisp)-1]+lisp[len(lisp)-2])
  
  return lisp
Posted by: Guest on October-13-2020
1

fibonacci series

class Solution {
    public int fib(int n) {
     if(n==0){
         return 0;
     }
        if(n==1){
            return 1;
        }
        if(n==2){
            return 1;
        }
        return fib(n-1)+fib(n-2);
    }
}
Posted by: Guest on June-10-2021
5

fibonacci series

//basic fibonacci series
0, 1, 1, 2, 3, 5, 8, 13, 21, ...
Posted by: Guest on August-07-2021
3

fibonacci series

// Fibonacci Series
0,1,1,2,3,5,8,13,21,34,55,89,144......
Posted by: Guest on June-11-2021
1

Fibonacci series

//to find nth fibonacci number(recursive solution)
class Solution {
    public int fib(int n) {
     if(n==0){
         return 0;
     }
        if(n==1){
            return 1;
        }
        if(n==2){
            return 1;
        }
        return fib(n-1)+fib(n-2);
    }
}
Posted by: Guest on April-26-2021
1

fibinachi

def fib(n):
  lisp = []
  
  for i in range(n):
    if len(lisp) < 3:
      if len(lisp) == 0:
        lisp.append(0)
      else:
        lisp.append(1)
    
    else:
      lisp.append(lisp[len(lisp)-1]+lisp[len(lisp)-2])
  
  return lisp
Posted by: Guest on October-13-2020
1

fibonacci series

class Solution {
    public int fib(int n) {
     if(n==0){
         return 0;
     }
        if(n==1){
            return 1;
        }
        if(n==2){
            return 1;
        }
        return fib(n-1)+fib(n-2);
    }
}
Posted by: Guest on June-10-2021

Python Answers by Framework

Browse Popular Code Answers by Language