You are viewing a single comment's thread. Return to all comments →
from itertools import permutations s,k = input().split() print(*["".join(x) for x in list(permutations(sorted(s),int(k)))],sep="\n")
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 s,k = input().split() print(*["".join(x) for x in list(permutations(sorted(s),int(k)))],sep="\n")