This repository has been archived on 2025-11-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
small-projects/bubble-sort.py
2019-06-12 09:49:42 +01:00

14 lines
360 B
Python

array = [7, 2, 5, 8, 0,1,2,3,4,5,6,7]
swapped = True
print("Original array:", array)
while swapped:
swapped = False
for i, item in enumerate(array):
if i != len(array) - 1:
if item > array[i + 1]:
array[i] = array[i + 1]
array[i + 1] = item
swapped = True
print("New array:", array)