Skip to content

Create Fischer-Yates_Shuffle.py #298

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 20, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions other/Fischer-Yates_Shuffle.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
'''
The Fisher–Yates shuffle is an algorithm for generating a random permutation of a finite sequence.
For more details visit
wikipedia/Fischer-Yates-Shuffle.
'''
import random

def FYshuffle(LIST):
for i in range(len(LIST)):
a = random.randint(0, len(LIST)-1)
b = random.randint(0, len(LIST)-1)
LIST[a], LIST[b] = LIST[b], LIST[a]
return LIST

if __name__ == '__main__':
integers = [0,1,2,3,4,5,6,7]
strings = ['python', 'says', 'hello', '!']
print ('Fisher-Yates Shuffle:')
print ('List',integers, strings)
print ('FY Shuffle',FYshuffle(integers), FYshuffle(strings))