Skip to content

bharatrajan/fibo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simple fibonacci number generator

This project was bootstrapped with Create React App.

Below you will find some information on how to perform common tasks.
You can find the most recent version of this guide here.

To run

Clone the project

  • cd fibo
  • npm i
  • yarn run

Fibonacci Sequence

The Fibonacci sequence F(n) can be defined by:

F(0) = 0
F(1) = 1
F(n) = F(n-1) + F(n-2) for n >= 2

https://en.wikipedia.org/wiki/Fibonacci_number


Specs

A new service that allows users to compute the fibonacci number of a given input at super fast speeds. A minimal interface, that allows a user to input a number, and view the output (the nth fibonacci number).

Credits