Skip to content

Instantly share code, notes, and snippets.

@hanaori
Created April 12, 2015 08:46
Show Gist options
  • Save hanaori/ad3f110842758c39d385 to your computer and use it in GitHub Desktop.
Save hanaori/ad3f110842758c39d385 to your computer and use it in GitHub Desktop.
The method to return Nth answer of Fibonacci sequence.
public int fibonacci(int n){
if(n == 0) return 0;
if(n == 1 || n == 2) return 1;
return fibonacci(n - 2) + fibonacci(n - 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment