Skip to content

Instantly share code, notes, and snippets.

@lalabuy948
Created July 16, 2018 21:23
Show Gist options
  • Save lalabuy948/f97f4dfec405b4b259cd65206f15ac93 to your computer and use it in GitHub Desktop.
Save lalabuy948/f97f4dfec405b4b259cd65206f15ac93 to your computer and use it in GitHub Desktop.
public int fibonacci(int 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