Skip to content

Instantly share code, notes, and snippets.

@varavut
Created August 11, 2015 11:53
Show Gist options
  • Save varavut/1cf4cc07ded497e3f9e0 to your computer and use it in GitHub Desktop.
Save varavut/1cf4cc07ded497e3f9e0 to your computer and use it in GitHub Desktop.
function F(n){
if(n == 0 || n == 1)
return n;
return F(n-1) + F(n-2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment