LeetCode 15. 3Sum
Two Pointer
Given an array nums
of n integers, are there elements a, b, c in nums
such that a + b + c = 0? Find all unique triplets in the array which gives the sum of zero.
Notice that the solution set must not contain duplicate triplets.
Example 1:
Example 2:
Example 3:
Constraints:
0 <= nums.length <= 3000
-10^5 <= nums[i] <= 10^5
Solution:
Last updated