C
de
S
pace
Explore
Log In
Explore
Sign Up
Log In
emerykim83
22.05.2026 11:57
1
Fibonacci recursive
Open to PRs
config.py
from collections import Counter def top_words(text, n=5): words = text.lower().split() return Counter(words).most_common(n) print(top_words('the cat sat on the mat the cat'))
algo.py
def debounce(fn, delay): import time last = [0.0] def wrapper(*args): now = time.time() if now - last[0] >= delay: last[0] = now return fn(*args) return wrapper
Idle
Try It
Clear
Log in
to leave a comment
Are you sure you want to delete this post?
Delete
Cancel