Merge pull request #639 from xsduan98/master

40.组合总和II python代码块 注释修改
This commit is contained in:
程序员Carl 2021-08-24 09:22:41 +08:00 committed by GitHub
commit 7b76e6be35
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -296,7 +296,7 @@ class Solution {
}
```
Python
```py
```python
class Solution:
def combinationSum2(self, candidates: List[int], target: int) -> List[List[int]]:
res = []