Skip to content

Commit 7b75b17

Browse files
refactor 46
1 parent 4b92032 commit 7b75b17

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/_46.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-
* 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-
246
public class _46 {
257

268
public static class Solution1 {

0 commit comments

Comments
 (0)