C
de
S
pace
Explore
Log In
Explore
Sign Up
Log In
tatumsmith517
22.05.2026 11:07
1
LRU cache #38
data.py
def fib(n): if n <= 1: return n return fib(n-1) + fib(n-2) print(fib(10))
test.py
import random def gen_password(length=12): chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#$%" return "".join(random.choice(chars) for _ in range(length)) print(gen_password())
Idle
Try It
Clear
Log in
to leave a comment
Are you sure you want to delete this post?
Delete
Cancel