document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. def quicksort(l): return l if len(l)<=1 else (quicksort([x for x in l if x <= l[0]][1:])+[l[0]]+quicksort([y for y in l if y > l[0]]))
');