Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 10f3e42

Browse files
committedDec 12, 2024·
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent c4376ca commit 10f3e42

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎backtracking/combination_sum.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
"""
1616

1717
def backtrack(
18-
candidates: list[int],
19-
path: list[int],
20-
answer: list[list[int]],
21-
target: int,
18+
candidates: list[int],
19+
path: list[int],
20+
answer: list[list[int]],
21+
target: int,
2222
start_index: int
2323
) -> None:
2424
"""

0 commit comments

Comments
 (0)
Please sign in to comment.