Update 0046.全排列.md

This commit is contained in:
gdnlnsjd
2021-05-15 10:44:49 +08:00
committed by GitHub
parent 039174e723
commit dc1dc8fe84

View File

@ -147,6 +147,7 @@ public:
Java
```java
class Solution {
List<List<Integer>> result=new ArrayList<List<Integer>>();
Deque<Integer> path=new LinkedList<Integer>();
@ -171,7 +172,7 @@ class Solution {
return result;
}
}
```
Python