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 097a23f

Browse files
committedMar 12, 2024
Fix
1 parent 781ebe6 commit 097a23f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed
 

‎dynamic_programming/combination_sum_iv.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,6 @@ def combination_sum_iv_bottom_up(n: int, array: list[int], target: int) -> int:
9696
import doctest
9797

9898
doctest.testmod()
99-
n = 3
10099
target = 5
101100
array = [1, 2, 5]
102-
print(combination_sum_iv(n, array, target))
101+
print(combination_sum_iv(array, target))

0 commit comments

Comments
 (0)
Please sign in to comment.