items = [6,20,8,19,56,23,87,41,49,53]
def mergesort(dataset): # to break array if len(dataset) > 1: mid = len(dataset) // 2 # mid is an index of midd