Skip to content

Instantly share code, notes, and snippets.

@ahmedazizkhelifi
Last active July 24, 2020 13:53
Show Gist options
  • Save ahmedazizkhelifi/9ff0092fbebf8b861352be444b7b6511 to your computer and use it in GitHub Desktop.
Save ahmedazizkhelifi/9ff0092fbebf8b861352be444b7b6511 to your computer and use it in GitHub Desktop.
def recursive_factorial(n):
return n*recursive_factorial(n-1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment