kopia lustrzana https://github.com/inkstitch/inkstitch
16 wiersze
409 B
Python
16 wiersze
409 B
Python
![]() |
from random import randrange
|
||
|
|
||
|
|
||
|
def poprandom(sequence):
|
||
|
index = randrange(len(sequence))
|
||
|
item = sequence[index]
|
||
|
|
||
|
# It's O(1) to pop the last item, and O(n) to pop any other item. So we'll
|
||
|
# always pop the last item and put it in the slot vacated by the item we're
|
||
|
# popping.
|
||
|
last_item = sequence.pop()
|
||
|
if index < len(sequence):
|
||
|
sequence[index] = last_item
|
||
|
|
||
|
return item
|