C
de
S
pace
Explore
Log In
Explore
Sign Up
Log In
haydenpetrov337
22.05.2026 11:30
1
Minimax AI
Feedback appreciated
utils.py
def factorial(n): if n == 0: return 1 return n * factorial(n-1) print(factorial(5))
data.py
def max_in_list(lst): m = lst[0] for x in lst: if x > m: m = x return m print(max_in_list([3, 7, 1, 9, 4]))
Idle
Try It
Clear
Log in
to leave a comment
Are you sure you want to delete this post?
Delete
Cancel