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
```java
class Solution { class Solution {
List<List<Integer>> result=new ArrayList<List<Integer>>(); List<List<Integer>> result=new ArrayList<List<Integer>>();
Deque<Integer> path=new LinkedList<Integer>(); Deque<Integer> path=new LinkedList<Integer>();
@ -171,7 +172,7 @@ class Solution {
return result; return result;
} }
} }
```
Python Python