Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Bubble sort
#python 3.6.9 def bubbleSort(arr): n=len(arr) for i in range(n-1): for j in range(0, n-i-1): if arr[j] > arr[j + 1] : arr[j], arr[j + 1] = arr[j + 1], arr[j] arr = [64, 34, 25, 12, 22, 11, 90] bubbleSort(arr) print ("Sorted array is:") for i in range(len(arr)): print ("% d" % arr[i]),
run
|
edit
|
history
|
help
0
Faiha HW #3
alternative dict.get (faster)
regu
Creating Person class
nameit01.py
Lesson5-
Никита
Faiha - L6
Sir, You Are Being Hunted secret message
Python, finditer(), filter emails and place put in tuple