Skip to content

Instantly share code, notes, and snippets.

@NicolaM94
Created August 15, 2023 17:43
Show Gist options
  • Save NicolaM94/95fee9b37cba1078ec40a100ed525de5 to your computer and use it in GitHub Desktop.
Save NicolaM94/95fee9b37cba1078ec40a100ed525de5 to your computer and use it in GitHub Desktop.
Wrapper for multiplication function
def hugeFactorial (n :int):
out = "1"
for n in range(1,n+1):
out = multiplication(out,n)
return out
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment