You are viewing a single comment's thread. Return to all comments →
My short solution…
from itertools import * s, k = input().split() print('\n'.join(''.join(c) for c in combinations_with_replacement(sorted(s), 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 →
My short solution…