We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39334fc commit 2c42197Copy full SHA for 2c42197
Python/squares-of-a-sorted-array.py
@@ -12,7 +12,6 @@ def sortedSquares(self, A):
12
"""
13
right = bisect.bisect_left(A, 0)
14
left = right-1
15
-
16
result = []
17
while 0 <= left or right < len(A):
18
if right == len(A) or \
0 commit comments