-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFourSum.java
More file actions
46 lines (34 loc) · 969 Bytes
/
Copy pathFourSum.java
File metadata and controls
46 lines (34 loc) · 969 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package TwoSum;
import org.junit.Test;
import java.util.List;
/**
* @description: 描述 Medium
* @author: dekai.kong (dekai.kong@luckincoffee.com)
* @date: 2018-11-06 17:13
* @from https://leetcode.com/problems/4sum/
*/
/**
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:
Given array nums = [1, 0, -1, 0, -2, 2], and target = 0.
A solution set is:
[
[-1, 0, 0, 1],
[-2, -1, 1, 2],
[-2, 0, 0, 2]
]
*/
public class FourSum {
public FourSum(){
}
public List<List<Integer>> fourSum(int[] nums, int target) {
//TODO
//https://leetcode.com/problems/4sum/discuss/8609/My-solution-generalized-for-kSums-in-JAVA
return null;
}
@Test
public void testThreeSum(){
}
}