Today, I solved the problem "211. Design Add and Search Words Data Structure" on LeetCode using Go!
#Trie #Backtracking
I used a trie to store the words, and for each search, I used backtracking if the current character that I am in the trie search is `.`.
Happy LeetCoding!