Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Implement a LeetCode-Style Algorithm
00:00
5 left

Implement a LeetCode-Style Algorithm

MediumPython

Problem

Implement an algorithm to solve a classic LeetCode-style problem.

Implement three_sum(nums) to return every unique triplet whose values sum to zero. Return triplets in nondecreasing order, with the collection ordered consistently; the input may contain duplicates.

Input is a list of integers, and output is a list of integer triplets. Do not reuse an array element within one triplet.

Constraints

  • 3 <= nums.length <= 300
  • -10^5 <= nums[i] <= 10^5
  • Each output triplet must be sorted in nondecreasing order
  • The output must not contain duplicate triplets

Function Signature

def three_sum(nums):
Interviewer

Your question is Implement a LeetCode-Style Algorithm. 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.