Skip to content

Instantly share code, notes, and snippets.

View armorasha's full-sized avatar

Raja Palanivel armorasha

  • Adelaide, Australia
View GitHub Profile
@armorasha
armorasha / sleep_sort.py
Last active March 5, 2023 12:24 — forked from maxcountryman/sleep_sort.py
Sleep sort in Python 3.8 multi-threading.
# used Python 3.8
import _thread
from time import sleep
items = [2, 4, 5, 2.5, 1, 7]
def sleep_sort(i):
sleep(i)
print(i)