fork download
  1. import random
  2. def lsort(a,b):
  3. c = []
  4. ap = 0
  5. bp = 0
  6. i = 0
  7. while i <= len(a)+len(b):
  8. if a[ap] < b[bp]:
  9. c.append(a[ap])
  10. ap+=1
  11. else:
  12. c.append(b[bp])
  13. bp+=1
  14. i+=1
  15. if ap == len(a):
  16. i = len(a)*len(b)
  17. for it in range(bp,len(b),1):
  18. c.append(b[0])
  19. elif bp == len(b):
  20. i = len(a)*len(b)
  21. for it in range(ap,len(a),1):
  22. c.append(a[0])
  23. print(a,b,c)
  24. return(c)
  25. n = [[]]
  26. for i in range(10):
  27. n[0].append([random.randint(1,1000)])
  28. while 2**len(n)< len(n[0]):
  29. n.append([])
  30. for i in range(len(n)-1):
  31. m = 0
  32. while m < len(n[i]):
  33. try:
  34. n[i+1].append(lsort(n[i][m],n[i][m+1]))
  35. except IndexError:
  36. n[i+1].append(n[i][m])
  37. m+=1
  38. for i in range(len(n)):
  39. print(str(n[i]))
Success #stdin #stdout 0.02s 9760KB
stdin
Standard input is empty
stdout
[[890], [45], [805], [504], [682], [404], [372], [82], [671], [642]]
[[890], [45], [805], [504], [682], [404], [372], [82], [671], [642]]
[[890], [45], [805], [504], [682], [404], [372], [82], [671], [642]]
[[890], [45], [805], [504], [682], [404], [372], [82], [671], [642]]