You are viewing a single comment's thread. Return to all comments →
from itertools import combinations
st = input().split()
s = st[0]
k = int(st[1])
sorted_string = sorted(s)
for i in range(1, k+1):
for combo in combinations(sorted_string, i):
print(''.join(combo))
Seems like cookies are disabled on this browser, please enable them to open this website
itertools.combinations()
You are viewing a single comment's thread. Return to all comments →
from itertools import combinations
st = input().split()
s = st[0]
k = int(st[1])
sorted_string = sorted(s)
for i in range(1, k+1):
for combo in combinations(sorted_string, i):