@@ -560,6 +560,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
560
560
561
561
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
562
562
|-|-|-|-|-|-
563
+ | 0104 |[ Maximum Depth of Binary Tree] ( src/main/js/g0101_0200/s0104_maximum_depth_of_binary_tree/solution.js ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Depth_First_Search, Breadth_First_Search, Tree, Binary_Tree, Big_O_Time_O(N)_ Space_O(H) | 0 | 100.00
563
564
564
565
#### Day 11 Containers and Libraries
565
566
@@ -832,6 +833,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
832
833
833
834
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
834
835
|-|-|-|-|-|-
836
+ | 0102 |[ Binary Tree Level Order Traversal] ( src/main/js/g0101_0200/s0102_binary_tree_level_order_traversal/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Breadth_First_Search, Tree, Binary_Tree, Big_O_Time_O(N)_ Space_O(N) | 1 | 87.97
835
837
836
838
#### Day 7 Binary Search
837
839
@@ -963,6 +965,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
963
965
964
966
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
965
967
|-|-|-|-|-|-
968
+ | 0101 |[ Symmetric Tree] ( src/main/js/g0101_0200/s0101_symmetric_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
966
969
967
970
#### Day 16 Design
968
971
@@ -1056,6 +1059,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1056
1059
1057
1060
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1058
1061
|-|-|-|-|-|-
1062
+ | 0114 |[ Flatten Binary Tree to Linked List] ( src/main/js/g0101_0200/s0114_flatten_binary_tree_to_linked_list/solution.js ) | Medium | Top_100_Liked_Questions, Depth_First_Search, Tree, Binary_Tree, Stack, Linked_List, Big_O_Time_O(N)_ Space_O(N) | 0 | 100.00
1059
1063
| 0024 |[ Swap Nodes in Pairs] ( src/main/js/g0001_0100/s0024_swap_nodes_in_pairs/solution.js ) | Medium | Top_100_Liked_Questions, Linked_List, Recursion, Big_O_Time_O(n)_ Space_O(1) | 1 | 100.00
1060
1064
| 0021 |[ Merge Two Sorted Lists] ( src/main/js/g0001_0100/s0021_merge_two_sorted_lists/solution.js ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Linked_List, Recursion, Big_O_Time_O(m+n)_ Space_O(m+n) | 0 | 100.00
1061
1065
| 0025 |[ Reverse Nodes in k-Group] ( src/main/js/g0001_0100/s0025_reverse_nodes_in_k_group/solution.js ) | Hard | Top_100_Liked_Questions, Linked_List, Recursion, Big_O_Time_O(n)_ Space_O(k) | 0 | 100.00
@@ -1065,6 +1069,8 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1065
1069
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1066
1070
|-|-|-|-|-|-
1067
1071
| 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
1072
+ | 0102 |[ Binary Tree Level Order Traversal] ( src/main/js/g0101_0200/s0102_binary_tree_level_order_traversal/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Breadth_First_Search, Tree, Binary_Tree, Big_O_Time_O(N)_ Space_O(N) | 1 | 87.97
1073
+ | 0104 |[ Maximum Depth of Binary Tree] ( src/main/js/g0101_0200/s0104_maximum_depth_of_binary_tree/solution.js ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Depth_First_Search, Breadth_First_Search, Tree, Binary_Tree, Big_O_Time_O(N)_ Space_O(H) | 0 | 100.00
1068
1074
| 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
1069
1075
1070
1076
#### Udemy Trie and Heap
@@ -1168,6 +1174,9 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1168
1174
1169
1175
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1170
1176
|-|-|-|-|-|-
1177
+ | 0102 |[ Binary Tree Level Order Traversal] ( src/main/js/g0101_0200/s0102_binary_tree_level_order_traversal/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Breadth_First_Search, Tree, Binary_Tree, Big_O_Time_O(N)_ Space_O(N) | 1 | 87.97
1178
+ | 0104 |[ Maximum Depth of Binary Tree] ( src/main/js/g0101_0200/s0104_maximum_depth_of_binary_tree/solution.js ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Depth_First_Search, Breadth_First_Search, Tree, Binary_Tree, Big_O_Time_O(N)_ Space_O(H) | 0 | 100.00
1179
+ | 0101 |[ Symmetric Tree] ( src/main/js/g0101_0200/s0101_symmetric_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
1171
1180
1172
1181
#### Day 12 Tree
1173
1182
@@ -1270,6 +1279,7 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1270
1279
1271
1280
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1272
1281
|-|-|-|-|-|-
1282
+ | 0105 |[ Construct Binary Tree from Preorder and Inorder Traversal] ( src/main/js/g0101_0200/s0105_construct_binary_tree_from_preorder_and_inorder_traversal/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Hash_Table, Tree, Binary_Tree, Divide_and_Conquer, Big_O_Time_O(N)_ Space_O(N) | 1 | 98.60
1273
1283
1274
1284
#### Day 16 Tree
1275
1285
@@ -1305,6 +1315,11 @@ JavaScript-based LeetCode algorithm problem solutions, regularly updated.
1305
1315
1306
1316
| # | Title | Difficulty | Tag | Time, ms | Time, %
1307
1317
|------|----------------|-------------|-------------|----------|---------
1318
+ | 0114 |[ Flatten Binary Tree to Linked List] ( src/main/js/g0101_0200/s0114_flatten_binary_tree_to_linked_list/solution.js ) | Medium | Top_100_Liked_Questions, Depth_First_Search, Tree, Binary_Tree, Stack, Linked_List, Udemy_Linked_List, Big_O_Time_O(N)_ Space_O(N) | 0 | 100.00
1319
+ | 0105 |[ Construct Binary Tree from Preorder and Inorder Traversal] ( src/main/js/g0101_0200/s0105_construct_binary_tree_from_preorder_and_inorder_traversal/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Hash_Table, Tree, Binary_Tree, Divide_and_Conquer, Data_Structure_II_Day_15_Tree, Big_O_Time_O(N)_ Space_O(N) | 1 | 98.60
1320
+ | 0104 |[ Maximum Depth of Binary Tree] ( src/main/js/g0101_0200/s0104_maximum_depth_of_binary_tree/solution.js ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Depth_First_Search, Breadth_First_Search, Tree, Binary_Tree, Data_Structure_I_Day_11_Tree, Programming_Skills_I_Day_10_Linked_List_and_Tree, Udemy_Tree_Stack_Queue, Big_O_Time_O(N)_ Space_O(H) | 0 | 100.00
1321
+ | 0102 |[ Binary Tree Level Order Traversal] ( src/main/js/g0101_0200/s0102_binary_tree_level_order_traversal/solution.js ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Breadth_First_Search, Tree, Binary_Tree, Data_Structure_I_Day_11_Tree, Level_1_Day_6_Tree, Udemy_Tree_Stack_Queue, Big_O_Time_O(N)_ Space_O(N) | 1 | 87.97
1322
+ | 0101 |[ Symmetric Tree] ( src/main/js/g0101_0200/s0101_symmetric_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
1308
1323
| 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
1324
| 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
1325
| 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
0 commit comments