Learn Data Structures by Building the Merge Sort Algorithm - Step 4

Tell us what’s happening:

can someone help me with this? the code doesn’t pass

Your code so far


# User Editable Region

def merge_sort(array):
    middle_point = len(array) // 2
    left_part=slice(middle_point)

# User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0

Challenge Information:

Learn Data Structures by Building the Merge Sort Algorithm - Step 4

python does not have a slice method, try to review slice syntax on your own