git-subtree-dir: users/wpcarro git-subtree-mainline:464bbcb15cgit-subtree-split:24f5a642afChange-Id: I6105b3762b79126b3488359c95978cadb3efa789
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			373 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			373 B
		
	
	
	
		
			Python
		
	
	
	
	
	
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)
 |