DataDriven
LearnPracticeInterviewDiscussDailyJobs

The Throttle Ceiling

A medium Python mock interview question on DataDriven. Practice with AI-powered feedback, real code execution, and a hire/no-hire decision.

Domain
Python
Difficulty
medium
Seniority
L4

Interview Prompt

A public API throttles each client to at most `max_requests` calls within any `window_seconds`-long stretch, and a call is accepted only when fewer than `max_requests` already-accepted calls fall inside the window ending at its arrival; a throttled call is turned away and never counts against later ones. Given `calls`, the arrival timestamps in arrival order, return a parallel list of booleans that is True for each accepted call and False for each throttled one.

Summary

Too many requests in too short a timeframe. Throttle it.

How This Interview Works

  1. Read the vague prompt (just like a real interview)
  2. Ask clarifying questions to the AI interviewer
  3. Write your python solution with real code execution
  4. Get instant feedback and a hire/no-hire decision

Related

  • All Mock Interviews
  • Practice Mode (untimed)
  • Python Interview Questions
  • Data Engineering Interview Prep Guide
  • Practice Problems
  • Daily Challenge