Data Structures and Algorithms > String Manipulation > Flashcards
trie tree
operations: insert a word, search a word, has word startsWith certain prefix
TrieNode can have multiple children, save children as a dictionary
stop word
minimum substring containing all the characters in the target string
sliding window: