Skip to content

Commit 9a6feb6

Browse files
edit 77
1 parent 553aa94 commit 9a6feb6

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

src/main/java/com/fishercoder/solutions/Combinations.java renamed to src/main/java/com/fishercoder/solutions/_77.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
[1,3],
1515
[1,4],
1616
]*/
17-
public class Combinations {
17+
public class _77 {
1818
public List<List<Integer>> combine(int n, int k) {
1919
List<List<Integer>> result = new ArrayList();
2020
int[] nums = new int[n];

0 commit comments

Comments
 (0)