Skip to content

Commit 2c42197

Browse files
authored
Update squares-of-a-sorted-array.py
1 parent 39334fc commit 2c42197

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

Python/squares-of-a-sorted-array.py

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ def sortedSquares(self, A):
1212
"""
1313
right = bisect.bisect_left(A, 0)
1414
left = right-1
15-
1615
result = []
1716
while 0 <= left or right < len(A):
1817
if right == len(A) or \

0 commit comments

Comments
 (0)