@@ -167,6 +167,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
167
167
|-|-|-|-|-|-
168
168
| 0017 |[ Letter Combinations of a Phone Number] ( src/main/js/g0001_0100/s0017_letter_combinations_of_a_phone_number/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, String, Hash_Table, Backtracking, Big_O_Time_O(4^n)_ Space_O(n) | 0 | 100.00
169
169
| 0022 |[ Generate Parentheses] ( src/main/js/g0001_0100/s0022_generate_parentheses/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, String, Dynamic_Programming, Backtracking, Big_O_Time_O(2^n)_ Space_O(n) | 0 | 100.00
170
+ | 0079 |[ Word Search] ( src/main/js/g0001_0100/s0079_word_search/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Matrix, Backtracking, Big_O_Time_O(4^(m\* n))_ Space_O(m\* n) | 292 | 83.26
170
171
171
172
#### Day 12 Dynamic Programming
172
173
@@ -452,6 +453,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
452
453
453
454
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
454
455
|-|-|-|-|-|-
456
+ | 0096 |[ Unique Binary Search Trees] ( src/main/js/g0001_0100/s0096_unique_binary_search_trees/solution.js ) | Medium | Dynamic_Programming, Math, Tree, Binary_Tree, Binary_Search_Tree, Big_O_Time_O(n)_ Space_O(1) | 0 | 100.00
455
457
456
458
#### Day 12
457
459
@@ -840,6 +842,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
840
842
841
843
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
842
844
|-|-|-|-|-|-
845
+ | 0098 |[ Validate Binary Search Tree] ( src/main/js/g0001_0100/s0098_validate_binary_search_tree/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Depth_First_Search, Tree, Binary_Tree, Binary_Search_Tree, Big_O_Time_O(N)_ Space_O(log(N)) | 0 | 100.00
843
846
844
847
#### Day 9 Graph/BFS/DFS
845
848
@@ -1061,6 +1064,8 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1061
1064
1062
1065
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1063
1066
|-|-|-|-|-|-
1067
+ | 0094 |[ Binary Tree Inorder Traversal] ( src/main/js/g0001_0100/s0094_binary_tree_inorder_traversal/solution.js ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Depth_First_Search, Tree, Binary_Tree, Stack, Big_O_Time_O(n)_ Space_O(n) | 0 | 100.00
1068
+ | 0098 |[ Validate Binary Search Tree] ( src/main/js/g0001_0100/s0098_validate_binary_search_tree/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Depth_First_Search, Tree, Binary_Tree, Binary_Search_Tree, Big_O_Time_O(N)_ Space_O(log(N)) | 0 | 100.00
1064
1069
1065
1070
#### Udemy Trie and Heap
1066
1071
@@ -1157,6 +1162,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1157
1162
1158
1163
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1159
1164
|-|-|-|-|-|-
1165
+ | 0094 |[ Binary Tree Inorder Traversal] ( src/main/js/g0001_0100/s0094_binary_tree_inorder_traversal/solution.js ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Depth_First_Search, Tree, Binary_Tree, Stack, Big_O_Time_O(n)_ Space_O(n) | 0 | 100.00
1160
1166
1161
1167
#### Day 11 Tree
1162
1168
@@ -1177,6 +1183,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1177
1183
1178
1184
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1179
1185
|-|-|-|-|-|-
1186
+ | 0098 |[ Validate Binary Search Tree] ( src/main/js/g0001_0100/s0098_validate_binary_search_tree/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Depth_First_Search, Tree, Binary_Tree, Binary_Search_Tree, Big_O_Time_O(N)_ Space_O(log(N)) | 0 | 100.00
1180
1187
1181
1188
### Data Structure II
1182
1189
@@ -1298,6 +1305,11 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1298
1305
1299
1306
| # | Title | Difficulty | Tag | Time, ms | Time, %
1300
1307
|------|----------------|-------------|-------------|----------|---------
1308
+ | 0098 |[ Validate Binary Search Tree] ( src/main/js/g0001_0100/s0098_validate_binary_search_tree/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Depth_First_Search, Tree, Binary_Tree, Binary_Search_Tree, Data_Structure_I_Day_14_Tree, Level_1_Day_8_Binary_Search_Tree, Udemy_Tree_Stack_Queue, Big_O_Time_O(N)_ Space_O(log(N)) | 0 | 100.00
1309
+ | 0096 |[ Unique Binary Search Trees] ( src/main/js/g0001_0100/s0096_unique_binary_search_trees/solution.js ) | Medium | Dynamic_Programming, Math, Tree, Binary_Tree, Binary_Search_Tree, Dynamic_Programming_I_Day_11, Big_O_Time_O(n)_ Space_O(1) | 0 | 100.00
1310
+ | 0094 |[ Binary Tree Inorder Traversal] ( src/main/js/g0001_0100/s0094_binary_tree_inorder_traversal/solution.js ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Depth_First_Search, Tree, Binary_Tree, Stack, Data_Structure_I_Day_10_Tree, Udemy_Tree_Stack_Queue, Big_O_Time_O(n)_ Space_O(n) | 0 | 100.00
1311
+ | 0084 |[ Largest Rectangle in Histogram] ( src/main/js/g0001_0100/s0084_largest_rectangle_in_histogram/solution.js ) | Hard | Top_100_Liked_Questions, Top_Interview_Questions, Array, Stack, Monotonic_Stack, Big_O_Time_O(n_log_n)_ Space_O(log_n) | 11 | 96.58
1312
+ | 0079 |[ Word Search] ( src/main/js/g0001_0100/s0079_word_search/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Matrix, Backtracking, Algorithm_II_Day_11_Recursion_Backtracking, Big_O_Time_O(4^(m\* n))_ Space_O(m\* n) | 292 | 83.26
1301
1313
| 0078 |[ Subsets] ( src/main/js/g0001_0100/s0078_subsets/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Bit_Manipulation, Backtracking, Algorithm_II_Day_9_Recursion_Backtracking, Udemy_Backtracking/Recursion, Big_O_Time_O(2^n)_ Space_O(n\* 2^n) | 0 | 100.00
1302
1314
| 0076 |[ Minimum Window Substring] ( src/main/js/g0001_0100/s0076_minimum_window_substring/solution.js ) | Hard | Top_100_Liked_Questions, Top_Interview_Questions, String, Hash_Table, Sliding_Window, Level_2_Day_14_Sliding_Window/Two_Pointer, Big_O_Time_O(s.length())_ Space_O(1) | 4 | 99.86
1303
1315
| 0075 |[ Sort Colors] ( src/main/js/g0001_0100/s0075_sort_colors/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Sorting, Two_Pointers, Data_Structure_II_Day_2_Array, Udemy_Arrays, Big_O_Time_O(n)_ Space_O(1) | 0 | 100.00
0 commit comments