Skip to content

Commit ba22496

Browse files
ruff
1 parent 0975b24 commit ba22496

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

backtracking/combination_sum.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ def combination_sum(candidates: list, target: int) -> list:
6060

6161
if any(x < 0 for x in candidates):
6262
raise ValueError("All elements in candidates must be non-negative.")
63-
6463
backtrack(candidates, path, answer, target, 0)
6564
return answer
6665

0 commit comments

Comments
 (0)