Commit 48242260 by BellCodeEditor

auto save

parent 5c9b87bd
Showing with 7 additions and 0 deletions
a=[3,23,63,24,1,68,54,34,5]
for i in range(len(a)-1):
for i in range(len(a)-1):
if a[i]<a[i+1]:
a[i],a[i+1]=a[i+1],a[i]
print(a)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment