You are viewing a single comment's thread. Return to all comments →
code in python 3
def factorial(n): if n == 0: f_ct = 1 return f_ct else: f_ct = n*factorial(n-1) return f_ct
Seems like cookies are disabled on this browser, please enable them to open this website
Day 9: Recursion 3
You are viewing a single comment's thread. Return to all comments →
code in python 3