Implement the Merge Sort Algorithm - Step 3

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

python does not have a slice method, “slice syntax” refer to a specific syntax.

You may want to review the lessons about it
What Is String Slicing and How Does It Work?
What Are Lists and How Do They Work?