Currently, I'm on Day 9 on the hackerrank 30 days of code (python 3) challenge, and I ran into this error, which I am not able to fix:
#!/bin/python3
import sys
from math import *
def factorial(n):
n = int(input())
if n == 0 :
print("1")
else:
print(factorial(n))
Thanks for the help