Skip to content

Commit 421ff73

Browse files
committed
Completed Word Search II
1 parent 7a56eec commit 421ff73

File tree

3 files changed

+330
-270
lines changed

3 files changed

+330
-270
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,11 +83,11 @@
8383
- [x] [Binary Tree Maximum Path Sum](https://leetcode.com/problems/binary-tree-maximum-path-sum/) - [Solution](src/binary_tree_maximum_path_sum.rs)
8484
- [x] [Serialize and Deserialize Binary Tree](https://leetcode.com/problems/serialize-and-deserialize-binary-tree/) - [Solution](src/serialize_and_deserialize_binary_tree.rs)
8585

86-
### Tries
86+
### Tries
8787

8888
- [x] [Implement Trie - Prefix Tree](https://leetcode.com/problems/implement-trie-prefix-tree/) - [Solution](src/implement_trie.rs)
8989
- [x] [Design Add and Search Words Data Structure](https://leetcode.com/problems/design-add-and-search-words-data-structure/) - [Solution](src/design_add_and_search_words_data_structure.rs)
90-
- [ ] [Word Search II](https://leetcode.com/problems/word-search-ii/)
90+
- [x] [Word Search II](https://leetcode.com/problems/word-search-ii/) - [Solution](src/word_search_ii.rs)
9191

9292
### Heap / Priority Queue
9393

@@ -304,7 +304,8 @@
304304
- [x] [Lowest Common Ancestor of a Binary Search Tree](https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-search-tree/) - [Solution](src/lowest_common_ancestor_of_a_binary_search_tree.rs)
305305
- [x] [Implement Trie](https://leetcode.com/problems/implement-trie-prefix-tree/) - [Solution](src/implement_trie.rs)
306306
- [ ] [Design Add and Search Word Data Structure](https://leetcode.com/problems/design-add-and-search-words-data-structure/)
307-
- [ ] [Word Search II](https://leetcode.com/problems/word-search-ii/)
307+
- [x] [Word Search II](https://leetcode.com/problems/word-search-ii/) - [Solution](src/word_search_ii.rs)
308+
308309

309310
### Heap ✓
310311

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ pub mod implement_trie; // 208 ✓
242242
pub mod minimum_size_subarray_sum; // 209 ✓
243243
pub mod course_schedule_ii; // 210 ✓
244244
pub mod design_add_and_search_words_data_structure; // 211 ✓
245-
pub mod word_search_ii; // 212
245+
pub mod word_search_ii; // 212
246246
pub mod house_robber_ii; // 213 ✓
247247

248248
pub mod kth_largest_element_in_an_array; // 215 ✓

0 commit comments

Comments
 (0)