C
de
S
pace
Explore
Log In
Explore
Sign Up
Log In
morgantanaka58
22.05.2026 11:35
0
Quick select #2
helper.py
def reverse_string(s): return s[::-1] print(reverse_string("hello"))
utils.py
def fib(n): if n <= 1: return n return fib(n-1) + fib(n-2) print(fib(10))
Idle
Try It
Clear
Log in
to leave a comment
Are you sure you want to delete this post?
Delete
Cancel