Created
November 15, 2016 14:42
-
-
Save MohammedRashad/4ef8f81bf709e31d10bff5086cb89a69 to your computer and use it in GitHub Desktop.
Calculate a number in Fibonacci Series by its index
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
uint32_t fibonacci(uint32_t n){ | |
if (n == 0) return 0; | |
if (n == 1) return 1; | |
return fibonacci(n - 1) + fibonacci(n - 2); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment