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