Skip to main content
πŸ”’ Preview mode. The first 15 Foundations lessons are free; this one is Pro. Start a 7-day trial to unlock the editor, AI hints and the the rest of the curriculum. Card required, cancel any time in Dashboard.Start 7-day trial β†’
⚑
← Coursesβ€ΊSenior Deep-DivesModule 4 Β· Memory + profiling Β· Recapβ€ΊπŸŽ― Review: Senior Python module 4 recapscenario85 / 105
+80 XP
Task
Build a small `memory_estimator(rows, bytes_per_row, overhead_pct)` that returns total memory in MB (float, 2 decimals): ``` total_bytes = rows * bytes_per_row * (1 + overhead_pct / 100) mb = total_bytes / 1_000_000 # decimal MB β€” matches Prometheus/Grafana convention return round(mb, 2) ``` Test for 3 realistic scales: small in-memory cache, mid-size pandas DataFrame, large Redis dataset.
✏️ Write your code here
🐍
Loading Python...
One-time download (~1 MB). Then it runs instantly.
πŸ“Š Result
Press Run to see result...

πŸ’¬ Discussion

Be the first to ask a question or share a tip.
Sign in to join the discussion. Reading is free.
Loading discussion…