This commit is contained in:
Shuai
2024-03-23 15:50:42 +08:00
parent 253bddcf37
commit 12bc134af8

View File

@ -311,7 +311,7 @@ class Solution:
for i in range(startIndex, len(candidates)): for i in range(startIndex, len(candidates)):
if total + candidates[i] > target: if total + candidates[i] > target:
continue break
total += candidates[i] total += candidates[i]
path.append(candidates[i]) path.append(candidates[i])
self.backtracking(candidates, target, total, i, path, result) self.backtracking(candidates, target, total, i, path, result)
@ -664,4 +664,3 @@ public class Solution
<a href="https://programmercarl.com/other/kstar.html" target="_blank"> <a href="https://programmercarl.com/other/kstar.html" target="_blank">
<img src="../pics/网站星球宣传海报.jpg" width="1000"/> <img src="../pics/网站星球宣传海报.jpg" width="1000"/>
</a> </a>