You are viewing a single comment's thread. Return to all comments →
from itertools import combinations_with_replacement string, k = input().split() print('\n'.join([''.join(item) for item in list(combinations_with_replacement(sorted(string), int(k)))]))
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 →