Skip to content

Commit 0bede82

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent ebf2a6c commit 0bede82

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

dynamic_programming/subset_generation.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ def combination_util(arr, n, r, index, data, i):
4141
combination_util(arr, n, r, index, data, i + 1)
4242

4343

44-
4544
def print_combination(arr, n, r):
4645
data = [0] * r
4746
combination_util(arr, n, r, 0, data, 0)

0 commit comments

Comments
 (0)