You are viewing a single comment's thread. Return to all comments →
from itertools import combinations_with_replacement s, k = input().split() for comb in combinations_with_replacement(sorted(s), int(k)): print("".join(comb))
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 →
For Python3 Platform