Skip to content

Commit 73d21c3

Browse files
refactor 77
1 parent 1d803cb commit 73d21c3

File tree

1 file changed

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

1 file changed

+0
-18
lines changed

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

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,6 @@
33
import java.util.ArrayList;
44
import java.util.List;
55

6-
/**
7-
* 77. Combinations
8-
*
9-
* Given two integers n and k, return all possible combinations of k numbers out of 1 ... n.
10-
11-
For example,
12-
If n = 4 and k = 2, a solution is:
13-
14-
[
15-
[2,4],
16-
[3,4],
17-
[2,3],
18-
[1,2],
19-
[1,3],
20-
[1,4],
21-
]
22-
*/
23-
246
public class _77 {
257

268
public static class Solution1 {

0 commit comments

Comments
 (0)