“LeetCode:15”
“3sum”
长期更新,对使用 Java 刷 LeetCode 过程中一些有趣的题的感想和启发。 解题源代码仓库 题目 题目链接 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. Note: The solution set must not contain duplicate triplets. Example: Given array nums = [-1, 0, 1, 2, -1, -4], A solution set is: [ [-1, 0, 1], [-1, -1, 2] ] 我的思路 思路如下: 现排序; 双重循环寻找匹配的数组; 找到后先与前一个数组比较,不相同的话就加入 output
。 我的代码