An open API service indexing awesome lists of open source software.

https://github.com/riverma/fb_fast

A fast, dynamic programming algorithm for calculating Fibonacci numbers, running in 0(n)
https://github.com/riverma/fb_fast

Last synced: 10 months ago
JSON representation

A fast, dynamic programming algorithm for calculating Fibonacci numbers, running in 0(n)

Awesome Lists containing this project

README

          

# fb_fast
A fast, dynamic programming algorithm for calculating Fibonacci numbers, running in 0(n)

Usage: ./fib \

Example: `./fib 10`

`0
1
1
2
3
5
8
13
21
34
55`