@@ -309,6 +309,7 @@ Php-based LeetCode algorithm problem solutions, regularly updated.
309
309
310
310
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
311
311
|-|-|-|-|-|-
312
+ | 1143 |[ Longest Common Subsequence] ( src/main/php/g1101_1200/s1143_longest_common_subsequence/Solution.php ) | Medium | Top_100_Liked_Questions, String, Dynamic_Programming, Big_O_Time_O(n\* m)_ Space_O(n\* m) | 191 | 96.00
312
313
| 0072 |[ Edit Distance] ( src/main/php/g0001_0100/s0072_edit_distance/Solution.php ) | Hard | Top_100_Liked_Questions, String, Dynamic_Programming, Big_O_Time_O(n^2)_ Space_O(n2) | 29 | 75.00
313
314
314
315
#### Day 20
@@ -417,6 +418,7 @@ Php-based LeetCode algorithm problem solutions, regularly updated.
417
418
418
419
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
419
420
|-|-|-|-|-|-
421
+ | 0739 |[ Daily Temperatures] ( src/main/php/g0701_0800/s0739_daily_temperatures/Solution.php ) | Medium | Top_100_Liked_Questions, Array, Stack, Monotonic_Stack, Big_O_Time_O(n)_ Space_O(n) | 410 | 100.00
420
422
421
423
#### Day 7
422
424
@@ -749,7 +751,7 @@ Php-based LeetCode algorithm problem solutions, regularly updated.
749
751
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
750
752
|-|-|-|-|-|-
751
753
| 0543 |[ Diameter of Binary Tree] ( src/main/php/g0501_0600/s0543_diameter_of_binary_tree/Solution.php ) | Easy | Top_100_Liked_Questions, Depth_First_Search, Tree, Binary_Tree, Big_O_Time_O(n)_ Space_O(n) | 0 | 100.00
752
- | 0437 |[ Path Sum III] ( src/main/php/g0401_0500/s0437_path_sum_iii/Solution.php ) | Medium | Top_100_Liked_Questions, Depth_First_Search, Tree, Binary_Tree, Big_O_Time_O(n)_ Space_O(n) | 8 | 100.00
754
+ | 0437 |[ Path Sum III] ( src/main/php/g0401_0500/s0437_path_sum_iii/Solution.php ) | Medium | Top_100_Liked_Questions, Depth_First_Search, Tree, Binary_Tree, Big_O_Time_O(n)_ Space_O(n) | 11 | 100.00
753
755
754
756
#### Day 8 Binary Search
755
757
@@ -951,6 +953,7 @@ Php-based LeetCode algorithm problem solutions, regularly updated.
951
953
| 0070 |[ Climbing Stairs] ( src/main/php/g0001_0100/s0070_climbing_stairs/Solution.php ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Dynamic_Programming, Math, Memoization, Big_O_Time_O(n)_ Space_O(n) | 3 | 82.81
952
954
| 0064 |[ Minimum Path Sum] ( src/main/php/g0001_0100/s0064_minimum_path_sum/Solution.php ) | Medium | Top_100_Liked_Questions, Array, Dynamic_Programming, Matrix, Big_O_Time_O(m\* n)_ Space_O(m\* n) | 20 | 81.48
953
955
| 0300 |[ Longest Increasing Subsequence] ( src/main/php/g0201_0300/s0300_longest_increasing_subsequence/Solution.php ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Dynamic_Programming, Binary_Search, Big_O_Time_O(n\* log_n)_ Space_O(n) | 24 | 90.91
956
+ | 1143 |[ Longest Common Subsequence] ( src/main/php/g1101_1200/s1143_longest_common_subsequence/Solution.php ) | Medium | Top_100_Liked_Questions, String, Dynamic_Programming, Big_O_Time_O(n\* m)_ Space_O(n\* m) | 191 | 96.00
954
957
| 0072 |[ Edit Distance] ( src/main/php/g0001_0100/s0072_edit_distance/Solution.php ) | Hard | Top_100_Liked_Questions, String, Dynamic_Programming, Big_O_Time_O(n^2)_ Space_O(n2) | 29 | 75.00
955
958
| 0010 |[ Regular Expression Matching] ( src/main/php/g0001_0100/s0010_regular_expression_matching/Solution.php ) | Hard | Top_100_Liked_Questions, Top_Interview_Questions, String, Dynamic_Programming, Recursion, Big_O_Time_O(m\* n)_ Space_O(m\* n) | 10 | 64.52
956
959
@@ -1107,6 +1110,7 @@ Php-based LeetCode algorithm problem solutions, regularly updated.
1107
1110
1108
1111
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1109
1112
|-|-|-|-|-|-
1113
+ | 0763 |[ Partition Labels] ( src/main/php/g0701_0800/s0763_partition_labels/Solution.php ) | Medium | Top_100_Liked_Questions, String, Hash_Table, Greedy, Two_Pointers, Big_O_Time_O(n)_ Space_O(1) | 5 | 83.33
1110
1114
1111
1115
#### Day 8 String
1112
1116
@@ -1379,6 +1383,7 @@ Php-based LeetCode algorithm problem solutions, regularly updated.
1379
1383
1380
1384
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1381
1385
|-|-|-|-|-|-
1386
+ | 1143 |[ Longest Common Subsequence] ( src/main/php/g1101_1200/s1143_longest_common_subsequence/Solution.php ) | Medium | Top_100_Liked_Questions, String, Dynamic_Programming, Big_O_Time_O(n\* m)_ Space_O(n\* m) | 191 | 96.00
1382
1387
1383
1388
#### Day 18 Dynamic Programming
1384
1389
@@ -1406,11 +1411,15 @@ Php-based LeetCode algorithm problem solutions, regularly updated.
1406
1411
1407
1412
| # | Title | Difficulty | Tag | Time, ms | Time, %
1408
1413
|------|----------------|-------------|-------------|----------|---------
1414
+ | 1143 |[ Longest Common Subsequence] ( src/main/php/g1101_1200/s1143_longest_common_subsequence/Solution.php ) | Medium | Top_100_Liked_Questions, String, Dynamic_Programming, Algorithm_II_Day_17_Dynamic_Programming, Dynamic_Programming_I_Day_19, Udemy_Dynamic_Programming, Big_O_Time_O(n\* m)_ Space_O(n\* m) | 191 | 96.00
1415
+ | 0763 |[ Partition Labels] ( src/main/php/g0701_0800/s0763_partition_labels/Solution.php ) | Medium | Top_100_Liked_Questions, String, Hash_Table, Greedy, Two_Pointers, Data_Structure_II_Day_7_String, Big_O_Time_O(n)_ Space_O(1) | 5 | 83.33
1416
+ | 0739 |[ Daily Temperatures] ( src/main/php/g0701_0800/s0739_daily_temperatures/Solution.php ) | Medium | Top_100_Liked_Questions, Array, Stack, Monotonic_Stack, Programming_Skills_II_Day_6, Big_O_Time_O(n)_ Space_O(n) | 410 | 100.00
1417
+ | 0647 |[ Palindromic Substrings] ( src/main/php/g0601_0700/s0647_palindromic_substrings/Solution.php ) | Medium | Top_100_Liked_Questions, String, Dynamic_Programming, Big_O_Time_O(n^2)_ Space_O(n) | 25 | 75.00
1409
1418
| 0560 |[ Subarray Sum Equals K] ( src/main/php/g0501_0600/s0560_subarray_sum_equals_k/Solution.php ) | Medium | Top_100_Liked_Questions, Array, Hash_Table, Prefix_Sum, Data_Structure_II_Day_5_Array, Big_O_Time_O(n)_ Space_O(n) | 82 | 100.00
1410
1419
| 0543 |[ Diameter of Binary Tree] ( src/main/php/g0501_0600/s0543_diameter_of_binary_tree/Solution.php ) | Easy | Top_100_Liked_Questions, Depth_First_Search, Tree, Binary_Tree, Level_2_Day_7_Tree, Udemy_Tree_Stack_Queue, Big_O_Time_O(n)_ Space_O(n) | 0 | 100.00
1411
1420
| 0494 |[ Target Sum] ( src/main/php/g0401_0500/s0494_target_sum/Solution.php ) | Medium | Top_100_Liked_Questions, Array, Dynamic_Programming, Backtracking, Big_O_Time_O(n\* (sum+s))_ Space_O(n\* (sum+s)) | 27 | 75.00
1412
1421
| 0438 |[ Find All Anagrams in a String] ( src/main/php/g0401_0500/s0438_find_all_anagrams_in_a_string/Solution.php ) | Medium | Top_100_Liked_Questions, String, Hash_Table, Sliding_Window, Algorithm_II_Day_5_Sliding_Window, Programming_Skills_II_Day_12, Level_1_Day_12_Sliding_Window/Two_Pointer, Big_O_Time_O(n+m)_ Space_O(1) | 29 | 66.67
1413
- | 0437 |[ Path Sum III] ( src/main/php/g0401_0500/s0437_path_sum_iii/Solution.php ) | Medium | Top_100_Liked_Questions, Depth_First_Search, Tree, Binary_Tree, Level_2_Day_7_Tree, Big_O_Time_O(n)_ Space_O(n) | 8 | 100.00
1422
+ | 0437 |[ Path Sum III] ( src/main/php/g0401_0500/s0437_path_sum_iii/Solution.php ) | Medium | Top_100_Liked_Questions, Depth_First_Search, Tree, Binary_Tree, Level_2_Day_7_Tree, Big_O_Time_O(n)_ Space_O(n) | 11 | 100.00
1414
1423
| 0416 |[ Partition Equal Subset Sum] ( src/main/php/g0401_0500/s0416_partition_equal_subset_sum/Solution.php ) | Medium | Top_100_Liked_Questions, Array, Dynamic_Programming, Level_2_Day_13_Dynamic_Programming, Big_O_Time_O(n\* sums)_ Space_O(n\* sums) | 245 | 86.67
1415
1424
| 0394 |[ Decode String] ( src/main/php/g0301_0400/s0394_decode_string/Solution.php ) | Medium | Top_100_Liked_Questions, String, Stack, Recursion, Level_1_Day_14_Stack, Udemy_Strings, Big_O_Time_O(n)_ Space_O(n) | 3 | 77.78
1416
1425
| 0347 |[ Top K Frequent Elements] ( src/main/php/g0301_0400/s0347_top_k_frequent_elements/Solution.php ) | Medium | Top_100_Liked_Questions, Top_Interview_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) | 23 | 84.85
0 commit comments