Skip to content

Instantly share code, notes, and snippets.

@akshat-fsociety
Last active August 12, 2021 08:08
Show Gist options
  • Save akshat-fsociety/251fb48ccbc1db404e13a9c1563916d5 to your computer and use it in GitHub Desktop.
Save akshat-fsociety/251fb48ccbc1db404e13a9c1563916d5 to your computer and use it in GitHub Desktop.
public int fibo(int n){
if(n <= 1)
return n;
return fibo(n - 1) + fibo(n - 2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment