You are viewing a single comment's thread. Return to all comments →
from itertools import combinations_with_replacement name, k = input().split() name = sorted(name) print(*list("".join(i) for i in sorted(combinations_with_replacement(name, int(k)))), sep="\n")
Seems like cookies are disabled on this browser, please enable them to open this website
itertools.combinations_with_replacement()
You are viewing a single comment's thread. Return to all comments →