Skip to content

Commit 459b755

Browse files
refactor 39
1 parent 89988e7 commit 459b755

File tree

1 file changed

+0
-17
lines changed
  • src/main/java/com/fishercoder/solutions

1 file changed

+0
-17
lines changed

src/main/java/com/fishercoder/solutions/_39.java

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,6 @@
44
import java.util.Arrays;
55
import java.util.List;
66

7-
/**
8-
* 39. Combination Sum
9-
*
10-
* Given a set of candidate numbers (C) (without duplicates) and a target number (T),
11-
* find all unique combinations in C where the candidate numbers sums to T.
12-
13-
The same repeated number may be chosen from C unlimited number of times.
14-
15-
Note:
16-
All numbers (including target) will be positive integers.
17-
The solution set must not contain duplicate combinations.
18-
For example, given candidate set [2, 3, 6, 7] and target 7,
19-
A solution set is:
20-
[
21-
[7],
22-
[2, 2, 3]
23-
]*/
247
public class _39 {
258

269
public static class Solution1 {

0 commit comments

Comments
 (0)