We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7eb0988 commit 47b3ea8Copy full SHA for 47b3ea8
sorts/merge_sort.py
@@ -39,7 +39,7 @@ def merge(left: list, right: list) -> list:
39
result = []
40
left_index = right_index = 0
41
length_left , length_right = len(left) , len(right)
42
-
+
43
while (left_index < length_left) and (right_index < length_right):
44
if left[left_index] < right[right_index]:
45
result.append(left[left_index])
0 commit comments