Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Unique Users in Sliding Buffer

MediumPython00:00
Practice interviewer
In session
5 left
00:00

Your question is Unique Users in Sliding Buffer. Start with the requirements on the right.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.

Problem

Interface.ai's conversational banking assistant emits an event stream as (userId, time) pairs. Given a buffer size k, determine the unique users represented in the buffer after each event arrives, where the buffer contains the most recent k events.

Implement unique_users_in_buffers(events, k). Return one result for every input event. Before the buffer reaches size k, use all events seen so far. Each result must contain unique user IDs in their first appearance order within the current buffer.

Formal Specification

  • Input: events, a list of pairs [userId, time], and positive integer k.
  • userId is a string, and time is an integer. Events are provided in nondecreasing timestamp order, but timestamps may repeat.
  • Output: A list of lists. The element at index i contains the distinct user IDs in the buffer after processing events[i], ordered by first appearance in that buffer.
  • The original input must not be modified.

Constraints

  • 1 <= len(events) <= 10^5
  • 1 <= k <= len(events)
  • Each event has the form [userId, time]
  • User IDs are nonempty strings
  • Timestamps are integers and arrive in nondecreasing order

Function Signature

def unique_users_in_buffers(events, k):
Your solutionPython 3
You need to log in / sign up to run or submit.
Run your code to see test output