You are viewing a single comment's thread. Return to all comments →
I used recursion:
def extraLongFactorials(n): # Write your code here if n == 1: return 1 return n * extraLongFactorials(n-1)
Seems like cookies are disabled on this browser, please enable them to open this website
Extra Long Factorials
You are viewing a single comment's thread. Return to all comments →
I used recursion: