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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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