4Sum

Given an integer array nums and an integer target, return all unique quadruplets [nums[a], nums[b], nums[c], nums[d]] such that:

  • 0 <= a, b, c, d < nums.length
  • a, b, c, and d are distinct indices
  • nums[a] + nums[b] + nums[c] + nums[d] == target

The solution set must not contain duplicate quadruplets. You may return the answer in any order.

Example 1
Inputnums = [1,0,-1,0,-2,2], target = 0
Output[[-2,-1,1,2],[-2,0,0,2],[-1,0,0,1]]
The three listed quadruplets are the only unique combinations of four numbers that sum to 0.
Example 2
Inputnums = [2,2,2,2,2], target = 8
Output[[2,2,2,2]]
The only quadruplet that sums to 8 uses four of the 2s.

Constraints

  • 1 <= nums.length <= 200
  • -10^9 <= nums[i] <= 10^9
  • -10^9 <= target <= 10^9

Asked at 19 companies

</>

Your Solution

(Ctrl/Cmd + Enter)

Switching Language

Loading template...

Loading...

Sign in to save your progress

AI code evaluation

Get a correctness verdict, missed edge cases, and complexity analysis of your solution.

Sign in to evaluate