-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path1079.Letter-Tile-Possibilities.py
50 lines (40 loc) · 1.12 KB
/
1079.Letter-Tile-Possibilities.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
40
41
42
43
44
45
46
47
48
49
50
# https://leetcode.com/problems/letter-tile-possibilities/
# Easy (75.41%)
# Total Accepted: 1,509
# Total Submissions: 2,001
# beats 100.0% of python submissions
class Solution(object):
def numTilePossibilities(self, tiles):
"""
:type tiles: str
:rtype: int
"""
length = len(tiles)
if length < 2:
return length
s = set()
s.add('')
ans = 0
chars = [0] * 26
for ch in tiles:
idx = ord(ch) - 65
chars[idx] += 1
for i in xrange(length):
tmp = set()
for string in s:
prefix_suffix = self.get_prefix_suffix(chars, string)
for ch in prefix_suffix:
tmp |= {ch + string, string + ch}
s = tmp
ans += len(s)
return ans
def get_prefix_suffix(self, chars, s):
tmp = chars[:]
for ch in s:
idx = ord(ch) - 65
tmp[idx] -= 1
res = []
for i in xrange(65, 91):
if tmp[i - 65] > 0:
res += chr(i),
return res