Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Efficient Transaction Aggregation

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

Your question is Efficient Transaction Aggregation. 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

Instacart wants a compact summary of order activity across its stores. Given a large list of completed order records, aggregate each store's total revenue, number of orders, and number of unique customers without repeatedly scanning the input.

Formal Specification

Implement aggregate_store_metrics(transactions). The input is a list of dictionaries, where every record contains:

  • store_id: a string identifying the store
  • customer_id: a string identifying the customer
  • amount_cents: a non-negative integer order amount in cents

Return a dictionary keyed by store_id. Each value must be a dictionary with exactly these keys: total_revenue_cents, order_count, and unique_customer_count. Store results may appear in the order each store is first encountered.

Constraints

  • 0 <= len(transactions) <= 10^6
  • Each record contains store_id, customer_id, and amount_cents
  • store_id and customer_id are strings
  • 0 <= amount_cents <= 10^9
  • The input may contain repeated customers and repeated stores

Function Signature

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