Skip to content

thevkrant/fibo_or_not

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Check whether the number is a Fibonacci number or not.

From the list of interview questions asked during datascience interviews. The infamous question is about checking whether the number is a Fibonacci number or not.

A Fibonacci sequence is the integer sequence of 0, 1, 1, 2, 3, 5, 8.... The first two terms are 0 and 1. All other terms are obtained by adding the preceding two terms. This means to say the nth term is the sum of (n-1)th and (n-2)th term.

  • In a nutshell

"The Fibonacci sequence is a series of numbers in which each number is the sum of the two that precede it."

Prerequisites

Python 3

Source Code

def isfibo(n):
    fib_a = 0
    fib_b = 1
    while fib_a < n:
        fib_a, fib_b = fib_b, fib_a + fib_b
    if (fib_a == n):
        return("IsFibo")
    else:
        return("IsNotFibo")

Author Name

Vikrant

About

Check whether the number is a Fibonacci number or not.

Topics

Resources

License

Stars

Watchers

Forks

Languages

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy