We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d803cb commit 73d21c3Copy full SHA for 73d21c3
src/main/java/com/fishercoder/solutions/_77.java
@@ -3,24 +3,6 @@
3
import java.util.ArrayList;
4
import java.util.List;
5
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
24
public class _77 {
25
26
public static class Solution1 {
0 commit comments