+ 2
How bubble sort a list without sort funtion?
4 ответов
+ 8
https://code.sololearn.com/cY7SC8lmidwy/?ref=app
+ 5
Go through the list, index by index. If the item i is bigger than the item i+1, swap them.
Do that until no more changes are needed.
+ 1
thanks all❤️❤️❤️