Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Two Sum Practice
00:00
5 left

Two Sum Practice

EasyPython

Problem

A Macy's cart validation service receives item prices and a target promotional budget. Return the indices of the two distinct items whose prices add exactly to the target.

Formal Specification

Implement two_sum(prices, target).

  • prices is a list of integers, where prices[i] is the price of the item at index i.
  • target is an integer promotional budget.
  • Return a list [i, j] where i != j and prices[i] + prices[j] == target.
  • Return indices in ascending discovery order: the earlier matching index first.
  • Each valid input has exactly one solution. An item cannot be used twice.

Constraints

  • 2 <= len(prices) <= 100,000
  • -1,000,000,000 <= prices[i] <= 1,000,000,000
  • -1,000,000,000 <= target <= 1,000,000,000
  • Exactly one valid pair exists
  • An index may not be used more than once

Function Signature

def two_sum(prices, target):
Interviewer

Your question is Two Sum Practice. Start with the requirements in the Question tab.

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.
CodePython 3
You need to log in / sign up to run or submit.Ln 2
Run your code to see test output here.