fibonacci

Fibonacci Series which is a series that goes by 0, 1, 1, 2, 3, 5, 8, 13 ......

Introduction

Package to print the Fibonacci Series and find the Nth number of a Fibonacci Series.

Example: Inputting 10 would print the series till 10. 0, 1, 1, 2, 3, 5, 8.

Fibonacci Series is basically a series where it starts with 0 and 1, and then each digit is the sum of the previous two number.

F(n) = F(n-1) + F(n-2) where n>=3.

It's a basic implementation of the printing the fibonacci series upto N numbers. To know more about this package, Visit here github link. This package can also find the Nth number from the Fibonacci series.

For example: 4th index of the series is 2. So if you input 4, 2 would be the output.


Installation

dependecies:
  fibonacci: 0.0.2

Example

See example/main.dart

import 'package:fibonacci/fibonacci.dart';

void main() {

  

    var x = Fibonacci.printSeries(size: 5).toString();

    print(x); // prints : [0, 1, 1, 2, 3, 5]

    var y = Fibonacci.printValue(index: 5).toString();

    print(y); // prints : 3
}

Libraries

fibonacci