Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Two Sum With Sorted Hint

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

Your question is Two Sum With Sorted Hint. 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

As part of a BCG X data-quality validation routine, you need to identify whether two sorted measurement values combine to a required target. Given a nondecreasing list of integers and a target integer, return the indices of two distinct elements whose values add up to the target.

Use the fact that the list is sorted to improve on a brute-force pair search. Indices are zero-based. Return the pair as [left_index, right_index] with the smaller index first. If no valid pair exists, return []. Each input contains at most one valid pair.

Formal Specification

Implement find_pair_indices(nums, target), where nums is a sorted list of integers and target is an integer. The function returns a list containing two integers, or an empty list when no pair exists. The same element cannot be used twice.

Constraints

  • 2 <= len(nums) <= 100,000
  • -10^9 <= nums[i] <= 10^9
  • -10^9 <= target <= 10^9
  • nums is sorted in nondecreasing order
  • The indices must be distinct
  • There is at most one valid pair

Function Signature

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