This repository has been archived on 2025-10-20. You can view files and clone it, but cannot push or open issues or pull requests.
Files
2bki21/progp/25-2-6/buuble-sort.py
danielvici123 705137697d ka
2025-02-06 11:03:06 +01:00

9 lines
205 B
Python

arr_test = [4,5,9,1,3]
for i in range(len(arr_test)):
if arr_test[i] > arr_test[i + 1]:
temp = arr_test[i]
arr_test[i] = arr_test[i + 1]
arr_test[i + 1] = temp
print(arr_test)