fibonacci 0.0.2 copy "fibonacci: ^0.0.2" to clipboard
fibonacci: ^0.0.2 copied to clipboard

This package helps to print the fibonacci series upto n numbers in the dart language. It can also find the nth number in the fibonacci series.

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
}
0
likes
150
pub points
31%
popularity

Publisher

unverified uploader

This package helps to print the fibonacci series upto n numbers in the dart language. It can also find the nth number in the fibonacci series.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter

More

Packages that depend on fibonacci