Skip to content

Instantly share code, notes, and snippets.

@mstepniowski
Created March 29, 2009 19:41
Show Gist options
  • Save mstepniowski/87500 to your computer and use it in GitHub Desktop.
Save mstepniowski/87500 to your computer and use it in GitHub Desktop.
def fib(n):
if n < 2:
return n
else:
return fib(n - 1) + fib(n - 2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment