Skip to content

Commit 9b093d0

Browse files
committed
changed URL for problem 211
1 parent 06243ba commit 9b093d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ the Trie data structure.
369369

370370
ID | Problem Name | Difficulty | Similar problems | Main Idea
371371
--- | ------------ | ---------- | ---------------- | ----------------------------------------------------------
372-
[208](https://leetcode.com/problems/implement-trie-prefix-tree/) | Implement Trie (Prefix Tree) | Medium | [677](https://leetcode.com/problems/map-sum-pairs/), [648](https://leetcode.com/problems/replace-words/), [676](https://leetcode.com/problems/implement-magic-dictionary/), [720](https://leetcode.com/problems/longest-word-in-dictionary/), [211](https://leetcode.com/problems/add-and-search-word-data-structure-design/) | Defining a `TrieNode` class whose children is a `defaultdict(TrieNode)` type variable will facilitate coding.
372+
[208](https://leetcode.com/problems/implement-trie-prefix-tree/) | Implement Trie (Prefix Tree) | Medium | [677](https://leetcode.com/problems/map-sum-pairs/), [648](https://leetcode.com/problems/replace-words/), [676](https://leetcode.com/problems/implement-magic-dictionary/), [720](https://leetcode.com/problems/longest-word-in-dictionary/), [211](https://leetcode.com/problems/design-add-and-search-words-data-structure/) | Defining a `TrieNode` class whose children is a `defaultdict(TrieNode)` type variable will facilitate coding.
373373

374374
#### Topological Sorting
375375

0 commit comments

Comments
 (0)