Last active
July 24, 2020 13:53
-
-
Save ahmedazizkhelifi/9ff0092fbebf8b861352be444b7b6511 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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