Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created January 7, 2021 01:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/51f8dd9edfcffe9549f5f54baafd30cc to your computer and use it in GitHub Desktop.
Save parzibyte/51f8dd9edfcffe9549f5f54baafd30cc to your computer and use it in GitHub Desktop.
def fibonacci_recursivo(posicion):
if posicion < 2:
return posicion
return fibonacci_recursivo(posicion - 1) + fibonacci_recursivo(posicion - 2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment