From dc1dc8fe8429e81a097eebfdb9f87d4b980adbd3 Mon Sep 17 00:00:00 2001 From: gdnlnsjd <84071244+gdnlnsjd@users.noreply.github.com> Date: Sat, 15 May 2021 10:44:49 +0800 Subject: [PATCH] =?UTF-8?q?Update=200046.=E5=85=A8=E6=8E=92=E5=88=97.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- problems/0046.全排列.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/problems/0046.全排列.md b/problems/0046.全排列.md index 0b3174f0..373c9257 100644 --- a/problems/0046.全排列.md +++ b/problems/0046.全排列.md @@ -147,6 +147,7 @@ public: Java: +```java class Solution { List> result=new ArrayList>(); Deque path=new LinkedList(); @@ -171,7 +172,7 @@ class Solution { return result; } } - +``` Python: