Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Efficient Lookups and Deduplication

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

Your question is Efficient Lookups and Deduplication. 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

Mistral AI's inference gateway receives batches of request IDs, which may contain retries and IDs already processed. Implement an efficient lookup routine that summarizes the batch without changing the order of first appearance.

Given request_ids and known_ids, return a dictionary with three results:

  1. unique_ids: every ID from request_ids, appearing once in first-seen order.
  2. duplicate_ids: IDs that occur at least twice in request_ids, appearing once in the order of their first occurrence.
  3. new_ids: IDs from unique_ids that are not present in known_ids, preserving order.

Use sets or dictionaries to achieve linear expected time. Do not sort the input, because ordering is significant.

Formal Specification

  • Input: request_ids, a list of strings, and known_ids, a list of strings.
  • Output: a dictionary with keys unique_ids, duplicate_ids, and new_ids; each value is a list of strings.
  • IDs are compared using exact, case-sensitive string equality.

Constraints

  • 0 <= len(request_ids), len(known_ids) <= 10^5
  • Each ID is a non-empty string of at most 128 characters
  • IDs are compared using exact, case-sensitive equality
  • Ordering is determined by first appearance in request_ids

Function Signature

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