def factorial(n):
if n <= 1:
return 1
else:
return n * (factorial(n - 1))
print(factorial(21))
For further actions, you may consider blocking this person and/or reporting abuse
def factorial(n):
if n <= 1:
return 1
else:
return n * (factorial(n - 1))
print(factorial(21))
For further actions, you may consider blocking this person and/or reporting abuse
Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.
A0mineTV -
Mayank Laddha -
Trix Cyrus -
Bradston Henry -
Top comments (0)