Skip to content

Latest commit

 

History

History
77 lines (33 loc) · 1.08 KB

File metadata and controls

77 lines (33 loc) · 1.08 KB

中文文档

Description

Design a data structure that supports the following two operations:

void addWord(word)

bool search(word)

search(word) can search a literal word or a regular expression string containing only letters a-z or .. A . means it can represent any one letter.

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.

Solutions

Python3

Java

...