-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Copy path288_Unique_Word_Abbreviation.py
37 lines (31 loc) · 1.03 KB
/
288_Unique_Word_Abbreviation.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
class ValidWordAbbr(object):
def __init__(self, dictionary):
"""
initialize your data structure here.
:type dictionary: List[str]
"""
self.dictionary = set(dictionary)
self.abb_dic = {}
for s in self.dictionary:
curr = self.getAbb(s)
if curr in self.abb_dic:
self.abb_dic[curr] = False
else:
self.abb_dic[curr] = True
def isUnique(self, word):
"""
check if a word is unique.
:type word: str
:rtype: bool
"""
abb = self.getAbb(word)
hasAbbr = self.abb_dic.get(abb, None)
return hasAbbr == None or (hasAbbr and word in self.dictionary)
def getAbb(self, word):
if len(word) <= 2:
return word
return word[0] + str(len(word) - 2) + word[-1]
# Your ValidWordAbbr object will be instantiated and called as such:
# vwa = ValidWordAbbr(dictionary)
# vwa.isUnique("word")
# vwa.isUnique("anotherWord")