Commit f7ed0193 by BellCodeEditor

auto save

parent 92449b0c
Showing with 9 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
alist = [20,17,9,13,8,6,5437788838848,7847584748,8933885999039508,7888498375984748874787,849378239398948499387856478473838,3879,82892,23348748,2345673778,2988584457468469920843302118301938439,89289051389203429875865,471878923674387342392378347834987,497749384384049389842,484545870984393584548443402889274,436287697592769438001076873,4393778326783287369287428392368329268779819723832921782,]
n=len(alist)
for i in range(0,n-1):
for j in range(0,n-1):
if alist[j] > alist[j+1] :
alist[j], alist[j+1 ] = alist[j+1],alist[j]
print(alist)
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