From 7a4fade7b4046e057487f7ffb42d800dd7f058e1 Mon Sep 17 00:00:00 2001 From: xsduan98 Date: Mon, 23 Aug 2021 12:32:59 +0800 Subject: [PATCH] =?UTF-8?q?40.=E7=BB=84=E5=90=88=E6=80=BB=E5=92=8CII=20pyt?= =?UTF-8?q?hon=E4=BB=A3=E7=A0=81=E5=9D=97=20=E6=B3=A8=E9=87=8A=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- problems/0040.组合总和II.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/problems/0040.组合总和II.md b/problems/0040.组合总和II.md index fdccf140..55b66b22 100644 --- a/problems/0040.组合总和II.md +++ b/problems/0040.组合总和II.md @@ -296,7 +296,7 @@ class Solution { } ``` Python: -```py +```python class Solution: def combinationSum2(self, candidates: List[int], target: int) -> List[List[int]]: res = []