Skip to content

Commit 44f20c7

Browse files
committed
update
1 parent f9cf8da commit 44f20c7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

py_dsa/backtracking/subsets_2.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,6 @@ def backtrack(start:int, subset:List[int]) -> None:
9999
while j+1<n and nums[j]==nums[j+1]:
100100
j+=1
101101
j+=1
102-
103-
return res
102+
104103
backtrack(0, [])
105104
return res

0 commit comments

Comments
 (0)