Skip to content
Sysmain edited this page Jan 18, 2018 · 1 revision

Welcome to the MobileSafe wiki! `from itertools import permutations, combinations from scipy.special import perm, comb import numpy import random

list(permutations([1,2,3,4], 2))

perm(4, 2)

b = ['A', '2', '3', '4', '5', '6', '7', '8', '9', '10', 'J', 'Q', 'K']*32 random.shuffle(b) print(hash(str(b))) print(b)`

Clone this wiki locally