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

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 = []