anmolrishi / ProgrammingHub

For the benefit of programmers.
MIT License
10 stars 113 forks source link

Getting n-th fibonacci number using matrixes (in O(log(n))) #92

Closed NolkMan closed 5 years ago

NolkMan commented 5 years ago

Allows for implementation of bignums for quick calculation of really big fib numbers Just change: typedef unsigned long long int_t to typedef int_t

my solution to #63