Skip to content

Instantly share code, notes, and snippets.

View armorasha's full-sized avatar

Raja Palanivel armorasha

  • Adelaide, Australia
View GitHub Profile
@maxcountryman
maxcountryman / sleep_sort.py
Created June 20, 2011 13:27
Sleep sort in Python
import thread
from time import sleep
items = [2, 4, 5, 2, 1, 7]
def sleep_sort(i):
sleep(i)
print i
[thread.start_new_thread(sleep_sort, (i,)) for i in items]