🔒 Vorschaumodus. Die ersten fünfzehn Foundations-Lektionen sind kostenlos; diese hier ist Pro. Starte einen 7-Tage-Trial, um den Editor, AI-Hinweise und den Rest des Lehrplans freizuschalten. Karte erforderlich, jederzeit im Dashboard kündbar.7-Tage-Trial starten →
📝 **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.
📋 Implement the function above. Tests run automatically.
💡 **Hint:** Re-read the theory if you get stuck.
🎯 Quiz
Frage
📝 **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.
📋 Implement the function above. Tests run automatically.
💡 **Hint:** Re-read the theory if you get stuck.