@@ -430,6 +430,7 @@ Go-based LeetCode algorithm problem solutions, regularly updated.
430430| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
431431|-|-|-|-|-|-
432432| 0019 |[ Remove Nth Node From End of List] ( src/main/go/g0001_0100/s0019_remove_nth_node_from_end_of_list/solution.go ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Two_Pointers, Linked_List, Big_O_Time_O(L)_ Space_O(L) | 0 | 100.00
433+ | 0234 |[ Palindrome Linked List] ( src/main/go/g0201_0300/s0234_palindrome_linked_list/solution.go ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Two_Pointers, Stack, Linked_List, Recursion, Big_O_Time_O(n)_ Space_O(1) | 104 | 97.77
433434
434435#### Day 4 Linked List
435436
@@ -572,6 +573,7 @@ Go-based LeetCode algorithm problem solutions, regularly updated.
572573| 0189 |[ Rotate Array] ( src/main/go/g0101_0200/s0189_rotate_array/solution.go ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Math, Two_Pointers, Big_O_Time_O(n)_ Space_O(1) | 20 | 92.61
573574| 0055 |[ Jump Game] ( src/main/go/g0001_0100/s0055_jump_game/solution.go ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Dynamic_Programming, Greedy, Big_O_Time_O(n)_ Space_O(1) | 48 | 71.95
574575| 0075 |[ Sort Colors] ( src/main/go/g0001_0100/s0075_sort_colors/solution.go ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Sorting, Two_Pointers, Big_O_Time_O(n)_ Space_O(1) | 1 | 76.26
576+ | 0238 |[ Product of Array Except Self] ( src/main/go/g0201_0300/s0238_product_of_array_except_self/solution.go ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Prefix_Sum, Big_O_Time_O(n^2)_ Space_O(n) | 20 | 77.65
575577| 0041 |[ First Missing Positive] ( src/main/go/g0001_0100/s0041_first_missing_positive/solution.go ) | Hard | Top_100_Liked_Questions, Top_Interview_Questions, Array, Hash_Table, Big_O_Time_O(n)_ Space_O(n) | 39 | 92.34
576578| 0239 |[ Sliding Window Maximum] ( src/main/go/g0201_0300/s0239_sliding_window_maximum/solution.go ) | Hard | Top_100_Liked_Questions, Top_Interview_Questions, Array, Heap_Priority_Queue, Sliding_Window, Queue, Monotonic_Queue, Big_O_Time_O(n\* k)_ Space_O(n+k) | 168 | 99.41
577579
@@ -614,6 +616,7 @@ Go-based LeetCode algorithm problem solutions, regularly updated.
614616| 0206 |[ Reverse Linked List] ( src/main/go/g0201_0300/s0206_reverse_linked_list/solution.go ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Linked_List, Recursion, Big_O_Time_O(N)_ Space_O(1) | 2 | 76.97
615617| 0021 |[ Merge Two Sorted Lists] ( src/main/go/g0001_0100/s0021_merge_two_sorted_lists/solution.go ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Linked_List, Recursion, Big_O_Time_O(m+n)_ Space_O(m+n) | 0 | 100.00
616618| 0160 |[ Intersection of Two Linked Lists] ( src/main/go/g0101_0200/s0160_intersection_of_two_linked_lists/solution.go ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Hash_Table, Two_Pointers, Linked_List, Big_O_Time_O(M+N)_ Space_O(1) | 16 | 99.84
619+ | 0234 |[ Palindrome Linked List] ( src/main/go/g0201_0300/s0234_palindrome_linked_list/solution.go ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Two_Pointers, Stack, Linked_List, Recursion, Big_O_Time_O(n)_ Space_O(1) | 104 | 97.77
617620| 0138 |[ Copy List with Random Pointer] ( src/main/go/g0101_0200/s0138_copy_list_with_random_pointer/solution.go ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Hash_Table, Linked_List, Big_O_Time_O(N)_ Space_O(N) | 2 | 70.11
618621| 0025 |[ Reverse Nodes in k-Group] ( src/main/go/g0001_0100/s0025_reverse_nodes_in_k_group/solution.go ) | Hard | Top_100_Liked_Questions, Linked_List, Recursion, Big_O_Time_O(n)_ Space_O(k) | 0 | 100.00
619622| 0146 |[ LRU Cache] ( src/main/go/g0101_0200/s0146_lru_cache/lrucache.go ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Hash_Table, Design, Linked_List, Doubly_Linked_List, Big_O_Time_O(1)_ Space_O(capacity) | 421 | 93.60
@@ -629,6 +632,7 @@ Go-based LeetCode algorithm problem solutions, regularly updated.
629632| 0104 |[ Maximum Depth of Binary Tree] ( src/main/go/g0101_0200/s0104_maximum_depth_of_binary_tree/solution.go ) | 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
630633| 0124 |[ Binary Tree Maximum Path Sum] ( src/main/go/g0101_0200/s0124_binary_tree_maximum_path_sum/solution.go ) | Hard | Top_100_Liked_Questions, Top_Interview_Questions, Dynamic_Programming, Depth_First_Search, Tree, Binary_Tree, Big_O_Time_O(N)_ Space_O(N) | 10 | 89.68
631634| 0098 |[ Validate Binary Search Tree] ( src/main/go/g0001_0100/s0098_validate_binary_search_tree/solution.go ) | 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)) | 6 | 55.36
635+ | 0236 |[ Lowest Common Ancestor of a Binary Tree] ( src/main/go/g0201_0300/s0236_lowest_common_ancestor_of_a_binary_tree/solution.go ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Depth_First_Search, Tree, Binary_Tree, Big_O_Time_O(n)_ Space_O(n) | 5 | 90.18
632636
633637#### Udemy Trie and Heap
634638
@@ -797,6 +801,7 @@ Go-based LeetCode algorithm problem solutions, regularly updated.
797801
798802| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
799803|-|-|-|-|-|-
804+ | 0238 |[ Product of Array Except Self] ( src/main/go/g0201_0300/s0238_product_of_array_except_self/solution.go ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Prefix_Sum, Big_O_Time_O(n^2)_ Space_O(n) | 20 | 77.65
800805| 0560 |[ Subarray Sum Equals K] ( src/main/go/g0501_0600/s0560_subarray_sum_equals_k/solution.go ) | Medium | Top_100_Liked_Questions, Array, Hash_Table, Prefix_Sum, Big_O_Time_O(n)_ Space_O(n) | 40 | 70.56
801806
802807#### Day 6 String
@@ -874,6 +879,7 @@ Go-based LeetCode algorithm problem solutions, regularly updated.
874879
875880| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
876881|-|-|-|-|-|-
882+ | 0236 |[ Lowest Common Ancestor of a Binary Tree] ( src/main/go/g0201_0300/s0236_lowest_common_ancestor_of_a_binary_tree/solution.go ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Depth_First_Search, Tree, Binary_Tree, Big_O_Time_O(n)_ Space_O(n) | 5 | 90.18
877883
878884#### Day 19 Graph
879885
@@ -1425,6 +1431,9 @@ Go-based LeetCode algorithm problem solutions, regularly updated.
14251431| 0283 |[ Move Zeroes] ( src/main/go/g0201_0300/s0283_move_zeroes/solution.go ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Array, Two_Pointers, Algorithm_I_Day_3_Two_Pointers, Programming_Skills_I_Day_6_Array, Udemy_Arrays, Big_O_Time_O(n)_ Space_O(1) | 15 | 88.69
14261432| 0240 |[ Search a 2D Matrix II] ( src/main/go/g0201_0300/s0240_search_a_2d_matrix_ii/solution.go ) | Medium | Top_100_Liked_Questions, Top_Interview_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) | 11 | 96.10
14271433| 0239 |[ Sliding Window Maximum] ( src/main/go/g0201_0300/s0239_sliding_window_maximum/solution.go ) | Hard | Top_100_Liked_Questions, Top_Interview_Questions, Array, Heap_Priority_Queue, Sliding_Window, Queue, Monotonic_Queue, Udemy_Arrays, Big_O_Time_O(n\* k)_ Space_O(n+k) | 168 | 99.41
1434+ | 0238 |[ Product of Array Except Self] ( src/main/go/g0201_0300/s0238_product_of_array_except_self/solution.go ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Prefix_Sum, Data_Structure_II_Day_5_Array, Udemy_Arrays, Big_O_Time_O(n^2)_ Space_O(n) | 20 | 77.65
1435+ | 0236 |[ Lowest Common Ancestor of a Binary Tree] ( src/main/go/g0201_0300/s0236_lowest_common_ancestor_of_a_binary_tree/solution.go ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Depth_First_Search, Tree, Binary_Tree, Data_Structure_II_Day_18_Tree, Udemy_Tree_Stack_Queue, Big_O_Time_O(n)_ Space_O(n) | 5 | 90.18
1436+ | 0234 |[ Palindrome Linked List] ( src/main/go/g0201_0300/s0234_palindrome_linked_list/solution.go ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Two_Pointers, Stack, Linked_List, Recursion, Level_2_Day_3_Linked_List, Udemy_Linked_List, Big_O_Time_O(n)_ Space_O(1) | 104 | 97.77
14281437| 0230 |[ Kth Smallest Element in a BST] ( src/main/go/g0201_0300/s0230_kth_smallest_element_in_a_bst/solution.go ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Depth_First_Search, Tree, Binary_Tree, Binary_Search_Tree, Data_Structure_II_Day_17_Tree, Level_2_Day_9_Binary_Search_Tree, Big_O_Time_O(n)_ Space_O(n) | 0 | 100.00
14291438| 0226 |[ Invert Binary Tree] ( src/main/go/g0201_0300/s0226_invert_binary_tree/solution.go ) | 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, Big_O_Time_O(n)_ Space_O(n) | 0 | 100.00
14301439| 0221 |[ Maximal Square] ( src/main/go/g0201_0300/s0221_maximal_square/solution.go ) | Medium | Top_100_Liked_Questions, Array, Dynamic_Programming, Matrix, Dynamic_Programming_I_Day_16, Big_O_Time_O(m\* n)_ Space_O(m\* n) | 0 | 100.00
0 commit comments