@@ -87,6 +87,7 @@ C#-based LeetCode algorithm problem solutions, regularly updated.
87
87
88
88
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
89
89
|-|-|-|-|-|-
90
+ | 0242 |[ Valid Anagram] ( LeetCodeNet/G0201_0300/S0242_valid_anagram/Solution.cs ) | Easy | String, Hash_Table, Sorting | 0 | 100.00
90
91
91
92
#### Day 12 Class and Object
92
93
@@ -209,6 +210,7 @@ C#-based LeetCode algorithm problem solutions, regularly updated.
209
210
210
211
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
211
212
|-|-|-|-|-|-
213
+ | 0380 |[ Insert Delete GetRandom O(1)] ( LeetCodeNet/G0301_0400/S0380_insert_delete_getrandom_o1/RandomizedSet.cs ) | Medium | Array, Hash_Table, Math, Design, Randomized | 10 | 100.00
212
214
213
215
### Graph Theory I
214
216
@@ -579,6 +581,7 @@ C#-based LeetCode algorithm problem solutions, regularly updated.
579
581
| 0020 |[ Valid Parentheses] ( LeetCodeNet/G0001_0100/S0020_valid_parentheses/Solution.cs ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, String, Stack, Big_O_Time_O(n)_ Space_O(n) | 2 | 82.01
580
582
| 0005 |[ Longest Palindromic Substring] ( LeetCodeNet/G0001_0100/S0005_longest_palindromic_substring/Solution.cs ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, String, Dynamic_Programming, Big_O_Time_O(n)_ Space_O(n) | 7 | 95.82
581
583
| 0394 |[ Decode String] ( LeetCodeNet/G0301_0400/S0394_decode_string/Solution.cs ) | Medium | Top_100_Liked_Questions, String, Stack, Recursion, LeetCode_75_Stack, Big_O_Time_O(n)_ Space_O(n) | 0 | 100.00
584
+ | 0242 |[ Valid Anagram] ( LeetCodeNet/G0201_0300/S0242_valid_anagram/Solution.cs ) | Easy | String, Hash_Table, Sorting | 0 | 100.00
582
585
| 0049 |[ Group Anagrams] ( LeetCodeNet/G0001_0100/S0049_group_anagrams/Solution.cs ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, String, Hash_Table, Sorting, Big_O_Time_O(n\* k_log_k)_ Space_O(n) | 17 | 83.74
583
586
| 0151 |[ Reverse Words in a String] ( LeetCodeNet/G0101_0200/S0151_reverse_words_in_a_string/Solution.cs ) | Medium | String, Two_Pointers, LeetCode_75_Array/String | 2 | 67.44
584
587
@@ -739,6 +742,8 @@ C#-based LeetCode algorithm problem solutions, regularly updated.
739
742
| 0122 |[ Best Time to Buy and Sell Stock II] ( LeetCodeNet/G0101_0200/S0122_best_time_to_buy_and_sell_stock_ii/Solution.cs ) | Medium | Top_Interview_Questions, Array, Dynamic_Programming, Greedy | 0 | 100.00
740
743
| 0055 |[ Jump Game] ( LeetCodeNet/G0001_0100/S0055_jump_game/Solution.cs ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Dynamic_Programming, Greedy, Big_O_Time_O(n)_ Space_O(1) | 1 | 99.82
741
744
| 0045 |[ Jump Game II] ( LeetCodeNet/G0001_0100/S0045_jump_game_ii/Solution.cs ) | Medium | Top_100_Liked_Questions, Array, Dynamic_Programming, Greedy, Big_O_Time_O(n)_ Space_O(1) | 0 | 100.00
745
+ | 0274 |[ H-Index] ( LeetCodeNet/G0201_0300/S0274_h_index/Solution.cs ) | Medium | Array, Sorting, Counting_Sort | 0 | 100.00
746
+ | 0380 |[ Insert Delete GetRandom O(1)] ( LeetCodeNet/G0301_0400/S0380_insert_delete_getrandom_o1/RandomizedSet.cs ) | Medium | Array, Hash_Table, Math, Design, Randomized | 10 | 100.00
742
747
| 0238 |[ Product of Array Except Self] ( LeetCodeNet/G0201_0300/S0238_product_of_array_except_self/Solution.cs ) | Medium | Top_100_Liked_Questions, Array, Prefix_Sum, LeetCode_75_Array/String, Big_O_Time_O(n^2)_ Space_O(n) | 1 | 100.00
743
748
| 0134 |[ Gas Station] ( LeetCodeNet/G0101_0200/S0134_gas_station/Solution.cs ) | Medium | Top_Interview_Questions, Array, Greedy | 0 | 100.00
744
749
| 0135 |[ Candy] ( LeetCodeNet/G0101_0200/S0135_candy/Solution.cs ) | Hard | Array, Greedy | 1 | 99.02
@@ -778,12 +783,16 @@ C#-based LeetCode algorithm problem solutions, regularly updated.
778
783
| 0054 |[ Spiral Matrix] ( LeetCodeNet/G0001_0100/S0054_spiral_matrix/Solution.cs ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Matrix, Simulation | 0 | 100.00
779
784
| 0048 |[ Rotate Image] ( LeetCodeNet/G0001_0100/S0048_rotate_image/Solution.cs ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Math, Matrix, Big_O_Time_O(n^2)_ Space_O(1) | 0 | 100.00
780
785
| 0073 |[ Set Matrix Zeroes] ( LeetCodeNet/G0001_0100/S0073_set_matrix_zeroes/Solution.cs ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Hash_Table, Matrix, Big_O_Time_O(m\* n)_ Space_O(1) | 2 | 73.03
786
+ | 0289 |[ Game of Life] ( LeetCodeNet/G0201_0300/S0289_game_of_life/Solution.cs ) | Medium | Array, Matrix, Simulation | 0 | 100.00
781
787
782
788
#### Top Interview 150 Hashmap
783
789
784
790
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
785
791
|-|-|-|-|-|-
792
+ | 0383 |[ Ransom Note] ( LeetCodeNet/G0301_0400/S0383_ransom_note/Solution.cs ) | Easy | String, Hash_Table, Counting | 1 | 98.72
786
793
| 0205 |[ Isomorphic Strings] ( LeetCodeNet/G0201_0300/S0205_isomorphic_strings/Solution.cs ) | Easy | String, Hash_Table | 2 | 90.78
794
+ | 0290 |[ Word Pattern] ( LeetCodeNet/G0201_0300/S0290_word_pattern/Solution.cs ) | Easy | String, Hash_Table | 0 | 100.00
795
+ | 0242 |[ Valid Anagram] ( LeetCodeNet/G0201_0300/S0242_valid_anagram/Solution.cs ) | Easy | String, Hash_Table, Sorting | 0 | 100.00
787
796
| 0049 |[ Group Anagrams] ( LeetCodeNet/G0001_0100/S0049_group_anagrams/Solution.cs ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, String, Hash_Table, Sorting, Big_O_Time_O(n\* k_log_k)_ Space_O(n) | 17 | 83.74
788
797
| 0001 |[ Two Sum] ( LeetCodeNet/G0001_0100/S0001_two_sum/Solution.cs ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Array, Hash_Table, Big_O_Time_O(n)_ Space_O(n), AI_can_be_used_to_solve_the_task | 1 | 98.51
789
798
| 0202 |[ Happy Number] ( LeetCodeNet/G0201_0300/S0202_happy_number/Solution.cs ) | Easy | Top_Interview_Questions, Hash_Table, Math, Two_Pointers | 0 | 100.00
@@ -794,6 +803,7 @@ C#-based LeetCode algorithm problem solutions, regularly updated.
794
803
795
804
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
796
805
|-|-|-|-|-|-
806
+ | 0228 |[ Summary Ranges] ( LeetCodeNet/G0201_0300/S0228_summary_ranges/Solution.cs ) | Easy | Array | 0 | 100.00
797
807
| 0056 |[ Merge Intervals] ( LeetCodeNet/G0001_0100/S0056_merge_intervals/Solution.cs ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Sorting, Big_O_Time_O(n_log_n)_ Space_O(n) | 6 | 39.00
798
808
| 0057 |[ Insert Interval] ( LeetCodeNet/G0001_0100/S0057_insert_interval/Solution.cs ) | Medium | Array | 1 | 99.33
799
809
@@ -805,6 +815,7 @@ C#-based LeetCode algorithm problem solutions, regularly updated.
805
815
| 0071 |[ Simplify Path] ( LeetCodeNet/G0001_0100/S0071_simplify_path/Solution.cs ) | Medium | String, Stack | 2 | 90.87
806
816
| 0155 |[ Min Stack] ( LeetCodeNet/G0101_0200/S0155_min_stack/MinStack.cs ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Stack, Design, Big_O_Time_O(1)_ Space_O(N) | 1 | 100.00
807
817
| 0150 |[ Evaluate Reverse Polish Notation] ( LeetCodeNet/G0101_0200/S0150_evaluate_reverse_polish_notation/Solution.cs ) | Medium | Top_Interview_Questions, Array, Math, Stack | 11 | 77.03
818
+ | 0224 |[ Basic Calculator] ( LeetCodeNet/G0201_0300/S0224_basic_calculator/Solution.cs ) | Hard | String, Math, Stack, Recursion | 3 | 96.26
808
819
809
820
#### Top Interview 150 Linked List
810
821
@@ -838,6 +849,7 @@ C#-based LeetCode algorithm problem solutions, regularly updated.
838
849
| 0129 |[ Sum Root to Leaf Numbers] ( LeetCodeNet/G0101_0200/S0129_sum_root_to_leaf_numbers/Solution.cs ) | Medium | Depth_First_Search, Tree, Binary_Tree | 0 | 100.00
839
850
| 0124 |[ Binary Tree Maximum Path Sum] ( LeetCodeNet/G0101_0200/S0124_binary_tree_maximum_path_sum/Solution.cs ) | Hard | Top_100_Liked_Questions, Top_Interview_Questions, Dynamic_Programming, Depth_First_Search, Tree, Binary_Tree, Big_O_Time_O(N)_ Space_O(N) | 0 | 100.00
840
851
| 0173 |[ Binary Search Tree Iterator] ( LeetCodeNet/G0101_0200/S0173_binary_search_tree_iterator/BSTIterator.cs ) | Medium | Tree, Binary_Tree, Stack, Design, Binary_Search_Tree, Iterator | 1 | 100.00
852
+ | 0222 |[ Count Complete Tree Nodes] ( LeetCodeNet/G0201_0300/S0222_count_complete_tree_nodes/Solution.cs ) | Easy | Depth_First_Search, Tree, Binary_Search, Binary_Tree | 0 | 100.00
841
853
| 0236 |[ Lowest Common Ancestor of a Binary Tree] ( LeetCodeNet/G0201_0300/S0236_lowest_common_ancestor_of_a_binary_tree/Solution.cs ) | Medium | Top_100_Liked_Questions, Depth_First_Search, Tree, Binary_Tree, LeetCode_75_Binary_Tree/DFS, Big_O_Time_O(n)_ Space_O(n) | 93 | 68.06
842
854
843
855
#### Top Interview 150 Binary Tree BFS
@@ -922,6 +934,7 @@ C#-based LeetCode algorithm problem solutions, regularly updated.
922
934
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
923
935
|-|-|-|-|-|-
924
936
| 0215 |[ Kth Largest Element in an Array] ( LeetCodeNet/G0201_0300/S0215_kth_largest_element_in_an_array/Solution.cs ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Sorting, Heap_Priority_Queue, Divide_and_Conquer, Quickselect, LeetCode_75_Heap/Priority_Queue, Big_O_Time_O(n\* log(n))_ Space_O(log(n)) | 85 | 88.50
937
+ | 0373 |[ Find K Pairs with Smallest Sums] ( LeetCodeNet/G0301_0400/S0373_find_k_pairs_with_smallest_sums/Solution.cs ) | Medium | Array, Heap_Priority_Queue | 52 | 73.33
925
938
| 0295 |[ Find Median from Data Stream] ( LeetCodeNet/G0201_0300/S0295_find_median_from_data_stream/MedianFinder.cs ) | Hard | Top_100_Liked_Questions, Sorting, Two_Pointers, Design, Heap_Priority_Queue, Data_Stream, Big_O_Time_O(n\* log_n)_ Space_O(n) | 191 | 41.28
926
939
927
940
#### Top Interview 150 Bit Manipulation
@@ -1007,6 +1020,8 @@ C#-based LeetCode algorithm problem solutions, regularly updated.
1007
1020
1008
1021
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1009
1022
|-|-|-|-|-|-
1023
+ | 0383 |[ Ransom Note] ( LeetCodeNet/G0301_0400/S0383_ransom_note/Solution.cs ) | Easy | String, Hash_Table, Counting | 1 | 98.72
1024
+ | 0242 |[ Valid Anagram] ( LeetCodeNet/G0201_0300/S0242_valid_anagram/Solution.cs ) | Easy | String, Hash_Table, Sorting | 0 | 100.00
1010
1025
1011
1026
#### Day 7 Linked List
1012
1027
@@ -1104,6 +1119,7 @@ C#-based LeetCode algorithm problem solutions, regularly updated.
1104
1119
1105
1120
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1106
1121
|-|-|-|-|-|-
1122
+ | 0290 |[ Word Pattern] ( LeetCodeNet/G0201_0300/S0290_word_pattern/Solution.cs ) | Easy | String, Hash_Table | 0 | 100.00
1107
1123
| 0763 |[ Partition Labels] ( LeetCodeNet/G0701_0800/S0763_partition_labels/Solution.cs ) | Medium | Top_100_Liked_Questions, String, Hash_Table, Greedy, Two_Pointers, Big_O_Time_O(n)_ Space_O(1) | 2 | 86.67
1108
1124
1109
1125
#### Day 8 String
@@ -1543,6 +1559,7 @@ C#-based LeetCode algorithm problem solutions, regularly updated.
1543
1559
1544
1560
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1545
1561
|-|-|-|-|-|-
1562
+ | 0222 |[ Count Complete Tree Nodes] ( LeetCodeNet/G0201_0300/S0222_count_complete_tree_nodes/Solution.cs ) | Easy | Depth_First_Search, Tree, Binary_Search, Binary_Tree | 0 | 100.00
1546
1563
1547
1564
#### Day 11
1548
1565
@@ -1738,20 +1755,30 @@ C#-based LeetCode algorithm problem solutions, regularly updated.
1738
1755
| 0437 |[ Path Sum III] ( LeetCodeNet/G0401_0500/S0437_path_sum_iii/Solution.cs ) | Medium | Top_100_Liked_Questions, Depth_First_Search, Tree, Binary_Tree, LeetCode_75_Binary_Tree/DFS, Level_2_Day_7_Tree, Big_O_Time_O(n)_ Space_O(n) | 10 | 66.33
1739
1756
| 0416 |[ Partition Equal Subset Sum] ( LeetCodeNet/G0401_0500/S0416_partition_equal_subset_sum/Solution.cs ) | Medium | Top_100_Liked_Questions, Array, Dynamic_Programming, Level_2_Day_13_Dynamic_Programming, Big_O_Time_O(n\* sums)_ Space_O(n\* sums) | 22 | 82.19
1740
1757
| 0394 |[ Decode String] ( LeetCodeNet/G0301_0400/S0394_decode_string/Solution.cs ) | Medium | Top_100_Liked_Questions, String, Stack, Recursion, LeetCode_75_Stack, Level_1_Day_14_Stack, Udemy_Strings, Big_O_Time_O(n)_ Space_O(n) | 0 | 100.00
1758
+ | 0383 |[ Ransom Note] ( LeetCodeNet/G0301_0400/S0383_ransom_note/Solution.cs ) | Easy | String, Hash_Table, Counting, Data_Structure_I_Day_6_String, Top_Interview_150_Hashmap | 1 | 98.72
1759
+ | 0380 |[ Insert Delete GetRandom O(1)] ( LeetCodeNet/G0301_0400/S0380_insert_delete_getrandom_o1/RandomizedSet.cs ) | Medium | Array, Hash_Table, Math, Design, Randomized, Programming_Skills_II_Day_20, Top_Interview_150_Array/String | 10 | 100.00
1760
+ | 0373 |[ Find K Pairs with Smallest Sums] ( LeetCodeNet/G0301_0400/S0373_find_k_pairs_with_smallest_sums/Solution.cs ) | Medium | Array, Heap_Priority_Queue, Top_Interview_150_Heap | 52 | 73.33
1741
1761
| 0347 |[ Top K Frequent Elements] ( LeetCodeNet/G0301_0400/S0347_top_k_frequent_elements/Solution.cs ) | Medium | Top_100_Liked_Questions, Array, Hash_Table, Sorting, Heap_Priority_Queue, Counting, Divide_and_Conquer, Quickselect, Bucket_Sort, Data_Structure_II_Day_20_Heap_Priority_Queue, Big_O_Time_O(n\* log(n))_ Space_O(k) | 7 | 75.70
1742
1762
| 0338 |[ Counting Bits] ( LeetCodeNet/G0301_0400/S0338_counting_bits/Solution.cs ) | Easy | Dynamic_Programming, Bit_Manipulation, LeetCode_75_Bit_Manipulation, Udemy_Bit_Manipulation, Big_O_Time_O(num)_ Space_O(num) | 0 | 100.00
1743
1763
| 0322 |[ Coin Change] ( LeetCodeNet/G0301_0400/S0322_coin_change/Solution.cs ) | Medium | Top_100_Liked_Questions, Array, Dynamic_Programming, Breadth_First_Search, Algorithm_II_Day_18_Dynamic_Programming, Dynamic_Programming_I_Day_20, Level_2_Day_12_Dynamic_Programming, Top_Interview_150_1D_DP, Big_O_Time_O(m\* n)_ Space_O(amount) | 12 | 97.87
1744
1764
| 0300 |[ Longest Increasing Subsequence] ( LeetCodeNet/G0201_0300/S0300_longest_increasing_subsequence/Solution.cs ) | Medium | Top_100_Liked_Questions, Array, Dynamic_Programming, Binary_Search, Algorithm_II_Day_16_Dynamic_Programming, Binary_Search_II_Day_3, Dynamic_Programming_I_Day_18, Udemy_Dynamic_Programming, Top_Interview_150_1D_DP, Big_O_Time_O(n\* log_n)_ Space_O(n) | 2 | 93.82
1745
1765
| 0295 |[ Find Median from Data Stream] ( LeetCodeNet/G0201_0300/S0295_find_median_from_data_stream/MedianFinder.cs ) | Hard | Top_100_Liked_Questions, Sorting, Two_Pointers, Design, Heap_Priority_Queue, Data_Stream, Top_Interview_150_Heap, Big_O_Time_O(n\* log_n)_ Space_O(n) | 191 | 41.28
1766
+ | 0290 |[ Word Pattern] ( LeetCodeNet/G0201_0300/S0290_word_pattern/Solution.cs ) | Easy | String, Hash_Table, Data_Structure_II_Day_7_String, Top_Interview_150_Hashmap | 0 | 100.00
1767
+ | 0289 |[ Game of Life] ( LeetCodeNet/G0201_0300/S0289_game_of_life/Solution.cs ) | Medium | Array, Matrix, Simulation, Top_Interview_150_Matrix | 0 | 100.00
1746
1768
| 0287 |[ Find the Duplicate Number] ( LeetCodeNet/G0201_0300/S0287_find_the_duplicate_number/Solution.cs ) | Medium | Top_100_Liked_Questions, Array, Binary_Search, Two_Pointers, Bit_Manipulation, Binary_Search_II_Day_5, Big_O_Time_O(n)_ Space_O(n) | 1 | 100.00
1747
1769
| 0283 |[ Move Zeroes] ( LeetCodeNet/G0201_0300/S0283_move_zeroes/Solution.cs ) | Easy | Top_100_Liked_Questions, Array, Two_Pointers, LeetCode_75_Two_Pointers, Algorithm_I_Day_3_Two_Pointers, Programming_Skills_I_Day_6_Array, Udemy_Arrays, Big_O_Time_O(n)_ Space_O(1) | 1 | 96.12
1770
+ | 0274 |[ H-Index] ( LeetCodeNet/G0201_0300/S0274_h_index/Solution.cs ) | Medium | Array, Sorting, Counting_Sort, Top_Interview_150_Array/String | 0 | 100.00
1771
+ | 0242 |[ Valid Anagram] ( LeetCodeNet/G0201_0300/S0242_valid_anagram/Solution.cs ) | Easy | String, Hash_Table, Sorting, Data_Structure_I_Day_6_String, Programming_Skills_I_Day_11_Containers_and_Libraries, Udemy_Strings, Top_Interview_150_Hashmap | 0 | 100.00
1748
1772
| 0240 |[ Search a 2D Matrix II] ( LeetCodeNet/G0201_0300/S0240_search_a_2d_matrix_ii/Solution.cs ) | Medium | Top_100_Liked_Questions, Array, Binary_Search, Matrix, Divide_and_Conquer, Data_Structure_II_Day_4_Array, Binary_Search_II_Day_8, Big_O_Time_O(n+m)_ Space_O(1) | 156 | 77.90
1749
1773
| 0239 |[ Sliding Window Maximum] ( LeetCodeNet/G0201_0300/S0239_sliding_window_maximum/Solution.cs ) | Hard | Top_100_Liked_Questions, Array, Heap_Priority_Queue, Sliding_Window, Queue, Monotonic_Queue, Udemy_Arrays, Big_O_Time_O(n\* k)_ Space_O(n+k) | 32 | 94.92
1750
1774
| 0238 |[ Product of Array Except Self] ( LeetCodeNet/G0201_0300/S0238_product_of_array_except_self/Solution.cs ) | Medium | Top_100_Liked_Questions, Array, Prefix_Sum, LeetCode_75_Array/String, Data_Structure_II_Day_5_Array, Udemy_Arrays, Top_Interview_150_Array/String, Big_O_Time_O(n^2)_ Space_O(n) | 1 | 100.00
1751
1775
| 0236 |[ Lowest Common Ancestor of a Binary Tree] ( LeetCodeNet/G0201_0300/S0236_lowest_common_ancestor_of_a_binary_tree/Solution.cs ) | Medium | Top_100_Liked_Questions, Depth_First_Search, Tree, Binary_Tree, LeetCode_75_Binary_Tree/DFS, Data_Structure_II_Day_18_Tree, Udemy_Tree_Stack_Queue, Top_Interview_150_Binary_Tree_General, Big_O_Time_O(n)_ Space_O(n) | 93 | 68.06
1752
1776
| 0234 |[ Palindrome Linked List] ( LeetCodeNet/G0201_0300/S0234_palindrome_linked_list/Solution.cs ) | Easy | Top_100_Liked_Questions, Two_Pointers, Stack, Linked_List, Recursion, Level_2_Day_3_Linked_List, Udemy_Linked_List, Big_O_Time_O(n)_ Space_O(1) | 4 | 60.29
1753
1777
| 0230 |[ Kth Smallest Element in a BST] ( LeetCodeNet/G0201_0300/S0230_kth_smallest_element_in_a_bst/Solution.cs ) | Medium | Top_100_Liked_Questions, Depth_First_Search, Tree, Binary_Tree, Binary_Search_Tree, Data_Structure_II_Day_17_Tree, Level_2_Day_9_Binary_Search_Tree, Top_Interview_150_Binary_Search_Tree, Big_O_Time_O(n)_ Space_O(n) | 0 | 100.00
1778
+ | 0228 |[ Summary Ranges] ( LeetCodeNet/G0201_0300/S0228_summary_ranges/Solution.cs ) | Easy | Array, Top_Interview_150_Intervals | 0 | 100.00
1754
1779
| 0226 |[ Invert Binary Tree] ( LeetCodeNet/G0201_0300/S0226_invert_binary_tree/Solution.cs ) | Easy | Top_100_Liked_Questions, Depth_First_Search, Breadth_First_Search, Tree, Binary_Tree, Data_Structure_I_Day_12_Tree, Level_2_Day_6_Tree, Udemy_Tree_Stack_Queue, Top_Interview_150_Binary_Tree_General, Big_O_Time_O(n)_ Space_O(n) | 0 | 100.00
1780
+ | 0224 |[ Basic Calculator] ( LeetCodeNet/G0201_0300/S0224_basic_calculator/Solution.cs ) | Hard | String, Math, Stack, Recursion, Top_Interview_150_Stack | 3 | 96.26
1781
+ | 0222 |[ Count Complete Tree Nodes] ( LeetCodeNet/G0201_0300/S0222_count_complete_tree_nodes/Solution.cs ) | Easy | Depth_First_Search, Tree, Binary_Search, Binary_Tree, Binary_Search_II_Day_10, Top_Interview_150_Binary_Tree_General | 0 | 100.00
1755
1782
| 0221 |[ Maximal Square] ( LeetCodeNet/G0201_0300/S0221_maximal_square/Solution.cs ) | Medium | Array, Dynamic_Programming, Matrix, Dynamic_Programming_I_Day_16, Top_Interview_150_Multidimensional_DP, Big_O_Time_O(m\* n)_ Space_O(m\* n) | 3 | 96.90
1756
1783
| 0219 |[ Contains Duplicate II] ( LeetCodeNet/G0201_0300/S0219_contains_duplicate_ii/Solution.cs ) | Easy | Array, Hash_Table, Sliding_Window, Top_Interview_150_Hashmap | 12 | 98.14
1757
1784
| 0215 |[ Kth Largest Element in an Array] ( LeetCodeNet/G0201_0300/S0215_kth_largest_element_in_an_array/Solution.cs ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Sorting, Heap_Priority_Queue, Divide_and_Conquer, Quickselect, LeetCode_75_Heap/Priority_Queue, Data_Structure_II_Day_20_Heap_Priority_Queue, Top_Interview_150_Heap, Big_O_Time_O(n\* log(n))_ Space_O(log(n)) | 85 | 88.50
0 commit comments