Tell us what’s happening:
not sure how to implement this. ive tried searching how to do it and i cant find anything
Your code so far
# User Editable Region
def merge_sort(array):
middle_point = len(array) // 2
left_part = array.slice(middle_point)
# User Editable Region
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:147.0) Gecko/20100101 Firefox/147.0
Challenge Information:
Implement the Merge Sort Algorithm - Step 3