Skip to content

Commit a55228a

Browse files
authored
Update recover-the-original-array.py
1 parent 6a00823 commit a55228a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/recover-the-original-array.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ def check(k, cnt, result):
2929
continue
3030
k //= 2
3131
result = []
32-
if check(k, collections.Counter(cnt), result):
32+
if check(k, collections.Counter(cnt), result):
3333
return result
3434
return []

0 commit comments

Comments
 (0)