Skip to content

Instantly share code, notes, and snippets.

@sagnibak
Created August 17, 2020 01:09
Show Gist options
  • Save sagnibak/256dfb22b3ac6bfebd52f6a97c5f7030 to your computer and use it in GitHub Desktop.
Save sagnibak/256dfb22b3ac6bfebd52f6a97c5f7030 to your computer and use it in GitHub Desktop.
def fac(n, acc=1):
if n == 0 or n == 1:
return acc
else:
return fac(n - 1, n * acc)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment