Last active
January 5, 2021 22:00
-
-
Save AdityaBhutani/73dbe726137be68d3757c06140c27c53 to your computer and use it in GitHub Desktop.
Factorial
This file contains 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 factorial(n) | |
return 1 if n==1 | |
n*factorial(n-1) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment