Question # 3

Dropdown

Finish the code for this bubble sort.

length = len(myList)

for n in range(length - 1):

for test in range(n + 1, length):

if myList[n] _____ myList[test]:

temp = myList[n]

myList[n] = myList [test]

myList[test] = temp

print(myList)

Respuesta :

Answer:

The answer is >

Explanation:

I did the assignment on edge this was the correct answer

Answer:

>

Explanation:

did the assignment and got a 100%