Test your understanding of the Bubble Sort algorithm
Using Bubble Sort on this array, how does the array look like after the FIRST run?
Array: [7, 14, 11, 8, 9]
Attempts: 0/3
Using Bubble Sort, what does the array look like after the SECOND run?
Array: [5, 3, 8, 4, 2]
Attempts: 0/3
Bubble Sort is performed on this array. How does the array look like after it is FULLY sorted?
Array: [10, 2, 7, 5, 3]
Attempts: 0/3