3Sum
觉得立个flag
:从今天开始每天在LeetCode刷一道题,今天的是3Sum
题目:
Given an array S of n integers, are there elements a, b, c in S such that a + b + c = 0? Find all unique triplets in the array which gives the sum of zero.
Note: The solution set must not contain duplicate triplets.
For example, given array S = [-1, 0, 1, 2, -1, -4],
A solution set is: [ [-1, 0, 1], [-1, -1, 2] ]
这个题的坑点有几个:
- 它要求的是不同的,但是如果处理的不好的话,是很容易出现相同的。
- 第二个是他很容易写出一个O(n^3)的算法,但是好像是跑不过去的。
接近的大概思路是:
- 先对数组进行排序,这样比较好解决第一个坑点
- 把他转换成2Sum去做