40.组合总和II python代码块 注释修改

This commit is contained in:
xsduan98
2021-08-23 12:32:59 +08:00
parent acf1a54f8d
commit 7a4fade7b4

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