Skip to content

Instantly share code, notes, and snippets.

@geraintwhite
Created March 28, 2015 19:51
Show Gist options
  • Save geraintwhite/31e69b5fe5f03e19ee67 to your computer and use it in GitHub Desktop.
Save geraintwhite/31e69b5fe5f03e19ee67 to your computer and use it in GitHub Desktop.
import sys
def fibo(n):
return n if n < 2 else fibo(n-1) + fibo(n-2)
if __name__ == '__main__':
print(fibo(int(sys.argv[1])))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment