-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Copy path784_Letter_Case_Permutation.py
39 lines (33 loc) · 1.11 KB
/
784_Letter_Case_Permutation.py
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
class Solution(object):
# def letterCasePermutation(self, S):
# ans = [[]]
# for char in S:
# n = len(ans)
# if char.isalpha():
# # Double the ans
# for i in xrange(n):
# ans.append(ans[i][:])
# ans[i].append(char.lower())
# ans[n + i].append(char.upper())
# else:
# # Normal append
# for i in xrange(n):
# ans[i].append(char)
# return map("".join, ans)
def letterCasePermutation(self, S):
B = sum(letter.isalpha() for letter in S)
ans = []
for bits in xrange(1 << B):
b = 0
word = []
for letter in S:
if letter.isalpha():
if (bits >> b) & 1:
word.append(letter.lower())
else:
word.append(letter.upper())
b += 1
else:
word.append(letter)
ans.append("".join(word))
return ans