Skip to content

Commit 0975b24

Browse files
reverting fn arg
1 parent 4b99885 commit 0975b24

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backtracking/combination_sum.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def combination_sum(candidates: list, target: int) -> list:
6666

6767

6868
def main() -> None:
69-
print(combination_sum([], 1))
69+
print(combination_sum([-8, 2.3, 0], 1))
7070

7171

7272
if __name__ == "__main__":

0 commit comments

Comments
 (0)