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 4b92032 commit 7b75b17Copy full SHA for 7b75b17
src/main/java/com/fishercoder/solutions/_46.java
@@ -3,24 +3,6 @@
3
import java.util.ArrayList;
4
import java.util.List;
5
6
-/**
7
- * 46. Permutations
8
- *
9
- * Given a collection of distinct numbers, return all possible permutations.
10
-
11
- For example,
12
- [1,2,3] have the following permutations:
13
- [
14
- [1,2,3],
15
- [1,3,2],
16
- [2,1,3],
17
- [2,3,1],
18
- [3,1,2],
19
- [3,2,1]
20
- ]
21
22
- */
23
24
public class _46 {
25
26
public static class Solution1 {
0 commit comments