Skip to content

Commit 5691596

Browse files
authored
Update sleepsort.py
1 parent 7961ea3 commit 5691596

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sorts/sleepsort.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
a = int(input())
99
items.append(a)
1010
def sleep_sort(i):
11-
sleep(i)
12-
print i
11+
sleep(i)
12+
print i
1313
[thread.start_new_thread(sleep_sort, (i,)) for i in items]

0 commit comments

Comments
 (0)