@@ -536,6 +536,7 @@ implementation 'com.github.javadev:leetcode-in-kotlin:1.4'
536536
537537| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
538538|-|-|-|-|-|-
539+ | 0104 |[ Maximum Depth of Binary Tree] ( src/main/kotlin/g0101_0200/s0104_maximum_depth_of_binary_tree/Solution.kt ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Depth_First_Search, Breadth_First_Search, Tree, Binary_Tree | 236 | 83.39
539540
540541#### Day 11 Containers and Libraries
541542
@@ -973,6 +974,7 @@ implementation 'com.github.javadev:leetcode-in-kotlin:1.4'
973974
974975| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
975976|-|-|-|-|-|-
977+ | 0100 |[ Same Tree] ( src/main/kotlin/g0001_0100/s0100_same_tree/Solution.kt ) | Easy | Depth_First_Search, Breadth_First_Search, Tree, Binary_Tree | 267 | 24.51
976978| 0101 |[ Symmetric Tree] ( src/main/kotlin/g0101_0200/s0101_symmetric_tree/Solution.kt ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Depth_First_Search, Breadth_First_Search, Tree, Binary_Tree | 290 | 26.98
977979| 0199 |[ Binary Tree Right Side View] ( src/main/kotlin/g0101_0200/s0199_binary_tree_right_side_view/Solution.kt ) | Medium | Depth_First_Search, Breadth_First_Search, Tree, Binary_Tree | 194 | 92.89
978980
@@ -1106,8 +1108,11 @@ implementation 'com.github.javadev:leetcode-in-kotlin:1.4'
11061108|-|-|-|-|-|-
11071109| 0094 |[ Largest Rectangle in Histogram] ( src/main/kotlin/g0001_0100/s0094_binary_tree_inorder_traversal/Solution.kt ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Depth_First_Search, Tree, Binary_Tree, Stack | 269 | 38.80
11081110| 0102 |[ Binary Tree Level Order Traversal] ( src/main/kotlin/g0101_0200/s0102_binary_tree_level_order_traversal/Solution.kt ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Breadth_First_Search, Tree, Binary_Tree | 355 | 29.37
1111+ | 0103 |[ Binary Tree Zigzag Level Order Traversal] ( src/main/kotlin/g0101_0200/s0103_binary_tree_zigzag_level_order_traversal/Solution.kt ) | Medium | Top_Interview_Questions, Breadth_First_Search, Tree, Binary_Tree | 316 | 34.25
11091112| 0543 |[ Diameter of Binary Tree] ( src/main/kotlin/g0501_0600/s0543_diameter_of_binary_tree/Solution.kt ) | Easy | Top_100_Liked_Questions, Depth_First_Search, Tree, Binary_Tree | 307 | 43.93
1113+ | 0100 |[ Same Tree] ( src/main/kotlin/g0001_0100/s0100_same_tree/Solution.kt ) | Easy | Depth_First_Search, Breadth_First_Search, Tree, Binary_Tree | 267 | 24.51
11101114| 0226 |[ Invert Binary Tree] ( src/main/kotlin/g0201_0300/s0226_invert_binary_tree/Solution.kt ) | Easy | Top_100_Liked_Questions, Depth_First_Search, Breadth_First_Search, Tree, Binary_Tree | 233 | 54.90
1115+ | 0104 |[ Maximum Depth of Binary Tree] ( src/main/kotlin/g0101_0200/s0104_maximum_depth_of_binary_tree/Solution.kt ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Depth_First_Search, Breadth_First_Search, Tree, Binary_Tree | 236 | 83.39
11111116| 0124 |[ Binary Tree Maximum Path Sum] ( src/main/kotlin/g0101_0200/s0124_binary_tree_maximum_path_sum/Solution.kt ) | Hard | Top_100_Liked_Questions, Top_Interview_Questions, Dynamic_Programming, Depth_First_Search, Tree, Binary_Tree | 331 | 74.42
11121117| 0098 |[ Validate Binary Search Tree] ( src/main/kotlin/g0001_0100/s0098_validate_binary_search_tree/Solution.kt ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Depth_First_Search, Tree, Binary_Tree, Binary_Search_Tree | 330 | 41.38
11131118| 0236 |[ Lowest Common Ancestor of a Binary Tree] ( src/main/kotlin/g0201_0300/s0236_lowest_common_ancestor_of_a_binary_tree/Solution.kt ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Depth_First_Search, Tree, Binary_Tree | 386 | 45.21
@@ -1231,6 +1236,7 @@ implementation 'com.github.javadev:leetcode-in-kotlin:1.4'
12311236| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
12321237|-|-|-|-|-|-
12331238| 0102 |[ Binary Tree Level Order Traversal] ( src/main/kotlin/g0101_0200/s0102_binary_tree_level_order_traversal/Solution.kt ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Breadth_First_Search, Tree, Binary_Tree | 355 | 29.37
1239+ | 0104 |[ Maximum Depth of Binary Tree] ( src/main/kotlin/g0101_0200/s0104_maximum_depth_of_binary_tree/Solution.kt ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Depth_First_Search, Breadth_First_Search, Tree, Binary_Tree | 236 | 83.39
12341240| 0101 |[ Symmetric Tree] ( src/main/kotlin/g0101_0200/s0101_symmetric_tree/Solution.kt ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Depth_First_Search, Breadth_First_Search, Tree, Binary_Tree | 290 | 26.98
12351241
12361242#### Day 12 Tree
@@ -1348,6 +1354,7 @@ implementation 'com.github.javadev:leetcode-in-kotlin:1.4'
13481354| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
13491355|-|-|-|-|-|-
13501356| 0105 |[ Construct Binary Tree from Preorder and Inorder Traversal] ( src/main/kotlin/g0101_0200/s0105_construct_binary_tree_from_preorder_and_inorder_traversal/Solution.kt ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Hash_Table, Tree, Binary_Tree, Divide_and_Conquer | 370 | 58.31
1357+ | 0103 |[ Binary Tree Zigzag Level Order Traversal] ( src/main/kotlin/g0101_0200/s0103_binary_tree_zigzag_level_order_traversal/Solution.kt ) | Medium | Top_Interview_Questions, Breadth_First_Search, Tree, Binary_Tree | 316 | 34.25
13511358
13521359#### Day 16 Tree
13531360
@@ -1527,9 +1534,14 @@ implementation 'com.github.javadev:leetcode-in-kotlin:1.4'
15271534| 0124 |[ Binary Tree Maximum Path Sum] ( src/main/kotlin/g0101_0200/s0124_binary_tree_maximum_path_sum/Solution.kt ) | Hard | Top_100_Liked_Questions, Top_Interview_Questions, Dynamic_Programming, Depth_First_Search, Tree, Binary_Tree, Udemy_Tree_Stack_Queue | 331 | 74.42
15281535| 0121 |[ Best Time to Buy and Sell Stock] ( src/main/kotlin/g0101_0200/s0121_best_time_to_buy_and_sell_stock/Solution.kt ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Array, Dynamic_Programming, Data_Structure_I_Day_3_Array, Dynamic_Programming_I_Day_7, Level_1_Day_5_Greedy, Udemy_Arrays | 609 | 94.06
15291536| 0114 |[ Flatten Binary Tree to Linked List] ( src/main/kotlin/g0101_0200/s0114_flatten_binary_tree_to_linked_list/Solution.kt ) | Medium | Top_100_Liked_Questions, Depth_First_Search, Tree, Binary_Tree, Stack, Linked_List, Udemy_Linked_List | 191 | 93.10
1537+ | 0106 |[ Construct Binary Tree from Inorder and Postorder Traversal] ( src/main/kotlin/g0101_0200/s0106_construct_binary_tree_from_inorder_and_postorder_traversal/Solution.kt ) | Medium | Array, Hash_Table, Tree, Binary_Tree, Divide_and_Conquer | 358 | 61.29
15301538| 0105 |[ Construct Binary Tree from Preorder and Inorder Traversal] ( src/main/kotlin/g0101_0200/s0105_construct_binary_tree_from_preorder_and_inorder_traversal/Solution.kt ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Hash_Table, Tree, Binary_Tree, Divide_and_Conquer, Data_Structure_II_Day_15_Tree | 370 | 58.31
1539+ | 0104 |[ Maximum Depth of Binary Tree] ( src/main/kotlin/g0101_0200/s0104_maximum_depth_of_binary_tree/Solution.kt ) | 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 | 236 | 83.39
1540+ | 0103 |[ Binary Tree Zigzag Level Order Traversal] ( src/main/kotlin/g0101_0200/s0103_binary_tree_zigzag_level_order_traversal/Solution.kt ) | Medium | Top_Interview_Questions, Breadth_First_Search, Tree, Binary_Tree, Data_Structure_II_Day_15_Tree, Udemy_Tree_Stack_Queue | 316 | 34.25
15311541| 0102 |[ Binary Tree Level Order Traversal] ( src/main/kotlin/g0101_0200/s0102_binary_tree_level_order_traversal/Solution.kt ) | 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 | 355 | 29.37
15321542| 0101 |[ Symmetric Tree] ( src/main/kotlin/g0101_0200/s0101_symmetric_tree/Solution.kt ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Depth_First_Search, Breadth_First_Search, Tree, Binary_Tree, Data_Structure_I_Day_11_Tree, Level_2_Day_15_Tree | 290 | 26.98
1543+ | 0100 |[ Same Tree] ( src/main/kotlin/g0001_0100/s0100_same_tree/Solution.kt ) | Easy | Depth_First_Search, Breadth_First_Search, Tree, Binary_Tree, Level_2_Day_15_Tree, Udemy_Tree_Stack_Queue | 267 | 24.51
1544+ | 0099 |[ Recover Binary Search Tree] ( src/main/kotlin/g0001_0100/s0099_recover_binary_search_tree/Solution.kt ) | Medium | Depth_First_Search, Tree, Binary_Tree, Binary_Search_Tree | 492 | 39.39
15331545| 0098 |[ Validate Binary Search Tree] ( src/main/kotlin/g0001_0100/s0098_validate_binary_search_tree/Solution.kt ) | 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 | 330 | 41.38
15341546| 0097 |[ Interleaving String] ( src/main/kotlin/g0001_0100/s0097_interleaving_string/Solution.kt ) | Medium | String, Dynamic_Programming | 240 | 57.50
15351547| 0096 |[ Unique Binary Search Trees] ( src/main/kotlin/g0001_0100/s0096_unique_binary_search_trees/Solution.kt ) | Medium | Top_100_Liked_Questions, Dynamic_Programming, Math, Tree, Binary_Tree, Binary_Search_Tree, Dynamic_Programming_I_Day_11 | 237 | 26.76
0 commit comments