每日一题 2019 - 03 - 09
题目:
Given an array nums
of n integers and an integer target
, are there elements a, b, c, and d in nums
such that a + b + c + d= target
? Find all unique quadruplets in the array which gives the sum of target
.
Note:
The solution set must not contain duplicate quadruplets.
Example:
1 | Given array nums = [1, 0, -1, 0, -2, 2], and target = 0. |
解法:
这个题让我们找出给定数组中某四个数字的和等于目标值的序列,基本想法跟leetcode 15.3Sum一致,唯一需要注意的一点就是这个题需要用到三重循环,所用时间复杂度变成O(n^3),同时需要注意外层指针要在末尾前3个位置停止更新,谨防越界。
代码:
1 | class Solution { |