Guest User

Untitled

a guest
Nov 21st, 2018
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. inputs = [
  2. [1, 3, 5],
  3. [2, 4, 6],
  4. [100, 0, 101, 1000],
  5. []]
  6.  
  7. for i in multisort(inputs):
  8. print i
  9.  
  10. # prints 0 1 2 3 4 5 6, 100, 101, 1000
Add Comment
Please, Sign In to add comment