You are viewing a single comment's thread. Return to all comments →
' from itertools import combinations
S,k=input().split(" ") for i in range(int(k)):
for ele in combinations(sorted(S),int(i+1)): print(''.join(ele))
'
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
S,k=input().split(" ") for i in range(int(k)):
'