Skip to content

Files

Latest commit

aQuaaQua
aQua
and
aQua
Jul 29, 2017
0811263 · Jul 29, 2017

History

History

0015.3sum

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Jul 29, 2017
Jul 28, 2017
Jul 28, 2017

题目

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]
]

解题思路

穷举法无法通过时间限制

详见代码