You are viewing a single comment's thread. Return to all comments →
****from itertools import permutations Q,J=input().split() d=sorted(permutations(Q,int(J)))
***for w in d: print("".join(w))*
Seems like cookies are disabled on this browser, please enable them to open this website
itertools.permutations()
You are viewing a single comment's thread. Return to all comments →
****from itertools import permutations Q,J=input().split() d=sorted(permutations(Q,int(J)))
***for w in d: print("".join(w))*