bharatrajan / fibo

React based Fibonacci number finder

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

React based Fibonacci number finder

License:MIT License


Languages

Language:JavaScript 89.2%Language:HTML 7.6%Language:CSS 3.2%