4
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【ネタ】PythonでSleep Sort

Posted at
script.py
from time import sleep
from _thread import start_new_thread


def sleep_sort(i):
    sleep(i)
    print(i)


array = [5, 3, 6, 3, 6, 3, 1, 4, 7]
sorted = list(map(lambda item: start_new_thread(sleep_sort, (item,)), array))
# >>> 1
# 3
# 3
# 3
# 4
# 5
# 6
# 6
# 7
# なお sortedには別物がはいる...まぁネタだから

元ネタ: http://qiita.com/lovee/items/9701151633d61e7ed4e3

4
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?