You are viewing a single comment's thread. Return to all comments →
from itertools import combinations_with_replacement S, k = input().split() for i in list(combinations_with_replacement(sorted(S), int(k))): print(''.join(i))
itertools.combinations_with_replacement()
You are viewing a single comment's thread. Return to all comments →