[LeetCode 288] Unique Word Abbreviation
An abbreviation of a word follows the form <first letter><number><last letter>
.
Below are some examples of word abbreviations:
a) it --> it (no abbreviation)
1
b) d|o|g --> d1g
1 1 1
1---5----0----5--8
c) i|nternationalizatio|n --> i18n
1
1---5----0
d) l|ocalizatio|n --> l10n
Assume you have a dictionary and given a word, find whether its abbreviation is unique in the dictionary. A word's abbreviation is unique if no other word from the dictionary has the same abbreviation.
Example:
Given dictionary = [ "deer", "door", "cake", "card" ]
isUnique("dear") -> false
isUnique("cart") -> true
isUnique("cane") -> false
isUnique("make") -> true
DiffcultyEasy
Similar Problems
Analysis
这道题让我们求独特的单词缩写,但是题目中给的例子不是很清晰,我们来看下面三种情况:
dictionary = {"dear"}, isUnique("door") -> false
dictionary = {"door", "door"}, isUnique("door") -> true
dictionary = {"dear", "door"}, isUnique("door") -> false