Commit 3d477189 by BellCodeEditor

save project

parent 92449b0c
Showing with 8 additions and 5 deletions
list1 = []
for a in range(0, 1000):
for b in range(0, 1000):
list1.insert(0, 0)
\ No newline at end of file
asdd=[20,17,15,6,2,5,8,9,19]
n = len(asdd)
for i in range(n-1):
for j in range(n-1):
if asdd[j]>asdd[j+1]:
asdd[j],asdd[j+1]=asdd[j+1],asdd[j]
print(asdd)
\ No newline at end of file
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