Refactored to one pop() (#917)

This commit is contained in:
Ashok Bakthavathsalam 2019-07-03 21:01:10 +05:30 committed by John Law
parent 4fb4cb4fd1
commit 03f9940775

View File

@ -37,7 +37,7 @@ def merge_sort(collection):
'''
result = []
while left and right:
result.append(left.pop(0) if left[0] <= right[0] else right.pop(0))
result.append((left if left[0] <= right[0] else right).pop(0))
return result + left + right
if len(collection) <= 1:
return collection