Skip to content

Commit

Permalink
Update 0046.全排列.md
Browse files Browse the repository at this point in the history
  • Loading branch information
gdnlnsjd authored May 15, 2021
1 parent 039174e commit dc1dc8f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion problems/0046.全排列.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ public:
Java:
```java
class Solution {
List<List<Integer>> result=new ArrayList<List<Integer>>();
Deque<Integer> path=new LinkedList<Integer>();
Expand All @@ -171,7 +172,7 @@ class Solution {
return result;
}
}
```

Python:

Expand Down

0 comments on commit dc1dc8f

Please sign in to comment.