Update 0040.组合总和II.md

This commit is contained in:
jianghongcheng
2023-05-26 11:11:44 -05:00
committed by GitHub
parent 20db57f364
commit 59742e5544

View File

@ -384,7 +384,7 @@ class Solution:
return result
```
回溯+去重(使用used
回溯 使用used
```python
class Solution: