Ask your own question, for FREE!
Computer Science 16 Online
OpenStudy (anonymous):

how do you call for a function? def insertion_sort(list): for index in range(1,len(list)): value = list[index] i = index - 1 while i >=0: if value < list [i]: list [i+1] = list[i] #shift number in slot i right to slot i+1 list[i] = value #shifting calue left into slot i i = i - 1 else: break

OpenStudy (anonymous):

create a list you would like to sort. Let's say it's called myList call it like this: insertion_sort(myList)

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!