Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Za-heer
/
AI_Assignment_checker
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
9a9a43d
AI_Assignment_checker
/
uploads
/
test.py
Za-heer
Working on AI & Data Science Assignment
b12e4cb
4 months ago
raw
Copy download link
history
blame
83 Bytes
# test.py
def
factorial
(
n
):
if
n ==
0
:
return
1
else
:
return
n * factorial(n-
1
)