Loading...
Divide, sort, and merge. Write the full merge sort algorithm with the merge helper from scratch.
Define a function def merge_sort(arr): that takes a list and returns a sorted list. Leave it with pass for now
def merge_sort(arr):
pass
# Build merge sort from scratch # You need: a merge_sort function and a merge helper function