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 59b7aa1 commit 77997fdCopy full SHA for 77997fd
sort/merge_sort.py
@@ -32,6 +32,7 @@ def merge(left, right):
32
for i in range(right_cursor,len(right)):
33
arr.append(right[i])
34
35
+ # Return result
36
return arr
37
38
array = [1,5, 7,4,3,2,1,9,0,10,43,64]
0 commit comments