def insertionSort( A ): ##You need to put your code here return True #you will remove this data = list(range(10)) #Feel free to modify this number check = data[:] import random random.shuffle(data) print(data) insertionSort(data) print(data) if data==check: print("This looks sorted") else: print("I don't think the sort works correctly yet.")