about summary refs log tree commit diff
path: root/users/wpcarro/scratch/deepmind/part_two/shuffle.py
blob: fdc5a8bd80ab1a6380982e414baf442294826c07 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import random


def get_random(floor, ceiling):
    return random.randrange(floor, ceiling + 1)


def shuffle(xs):
    n = len(xs)
    for i in range(n - 1):
        j = get_random(i + 1, n - 1)
        xs[i], xs[j] = xs[j], xs[i]


sample_list = [1, 2, 3, 4, 5]
print('Sample list:', sample_list)

print('Shuffling sample list...')
shuffle(sample_list)
print(sample_list)