C
de
S
pace
Explore
Log In
Explore
Sign Up
Log In
jordanmueller113
22.05.2026 12:07
1
Maze generator #53
From algorithms course
solver.py
def factorial(n): if n == 0: return 1 return n * factorial(n-1) print(factorial(5))
Idle
Try It
Clear
Log in
to leave a comment
Are you sure you want to delete this post?
Delete
Cancel