-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQuestion 33
84 lines (28 loc) · 896 Bytes
/
Question 33
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
"""
Question: Power Set
Power Set in Lexicographic order. This problem is about generating Power set in lexicographical order.
Sample Input 1
abc
Sample Output 1
["a","ab","abc","ac","b","bc","c"]
Sample Input 2
banana
Sample Output 2
['a', 'aa', 'aaa', 'aaab', 'aaabn', 'aaabnn', 'aaan',
'aaann', 'aab','aabn', 'aabnn', 'aan', 'aann', 'ab',
'abn', 'abnn', 'an', 'ann', 'b', 'bn', 'bnn', 'n', 'nn']
"""
from itertools import combinations
def power_set(input_string):
#write your code here
n = len(input_string)
input_string = sorted(input_string)
powerSet = set()
for i in range(n):
temp = combinations(input_string,i+1)
powerSet = powerSet.union(set(map(''.join, temp)))
powerSet = sorted(powerSet)
return powerSet
if __name__ == "__main__":
input_string = "banana"
print(power_set(input_string))