You are viewing a single comment's thread. Return to all comments →
from itertools import combinations_with_replacement
def tupleToStr(tup): return "".join(tup)
Str, num = list(input().split())
for val in combinations_with_replacement(sorted(Str), int(num)): print(tupleToStr(val))
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 →
from itertools import combinations_with_replacement
def tupleToStr(tup): return "".join(tup)
Str, num = list(input().split())
for val in combinations_with_replacement(sorted(Str), int(num)): print(tupleToStr(val))