Design a data structure that supports the following two operations:
Example:
addWord("bad")
addWord("dad")
addWord("mad")
search("pad") - > false
search("bad") - > true
search(".ad") - > true
search("b..") - > true
Note:
You may assume that all words are consist of lowercase letters a-z.
GIT URL: Java Solution of Leet Code's Add and Search Word problem
Java Solution
-K Himaanshu Shuklaa.
- void addWord(word)
- bool search(word)
Example:
addWord("bad")
addWord("dad")
addWord("mad")
search("pad") - > false
search("bad") - > true
search(".ad") - > true
search("b..") - > true
Note:
You may assume that all words are consist of lowercase letters a-z.
GIT URL: Java Solution of Leet Code's Add and Search Word problem
Java Solution
-K Himaanshu Shuklaa.
No comments:
Post a Comment