8000 Updated readme and tags · LeetCode-in-Php/LeetCode-in-Php@c2aaf19 · GitHub
[go: up one dir, main page]

Skip to content

Commit c2aaf19

Browse files
authored
Updated readme and tags
1 parent 128aee4 commit c2aaf19

File tree

86 files changed

+905
-693
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+905
-693
lines changed

README.md

Lines changed: 733 additions & 548 deletions
Large diffs are not rendered by default.

src/main/php/g0001_0100/s0001_two_sum/Solution.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
namespace leetcode\g0001_0100\s0001_two_sum;
44

55
// #Easy #Top_100_Liked_Questions #Top_Interview_Questions #Array #Hash_Table
6-
// #Data_Structure_I_Day_2_Array #Level_1_Day_13_Hashmap #Udemy_Arrays #Big_O_Time_O(n)_Space_O(n)
6+
// #Data_Structure_I_Day_2_Array #Level_1_Day_13_Hashmap #Udemy_Arrays #Top_Interview_150_Hashmap
7+
// #Big_O_Time_O(n)_Space_O(n) #AI_can_be_used_to_solve_the_task
78
// #2023_11_29_Time_9_ms_(97.47%)_Space_19.8_MB_(77.40%)
89

910
class Solution {

src/main/php/g0001_0100/s0002_add_two_numbers/Solution.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44

55
// #Medium #Top_100_Liked_Questions #Top_Interview_Questions #Math #Linked_List #Recursion
66
// #Data_Structure_II_Day_10_Linked_List #Programming_Skills_II_Day_15
7-
// #Big_O_Time_O(max(N,M))_Space_O(max(N,M)) #2023_11_29_Time_13_ms_(73.83%)_Space_19.2_MB_(38.29%)
7+
// #Top_Interview_150_Linked_List #Big_O_Time_O(max(N,M))_Space_O(max(N,M))
8+
// #AI_can_be_used_to_solve_the_task #2023_11_29_Time_13_ms_(73.83%)_Space_19.2_MB_(38.29%)
89

910
use leetcode\com_github_leetcode\ListNode;
1011

src/main/php/g0001_0100/s0003_longest_substring_without_repeating_characters/Solution.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44

55
// #Medium #Top_100_Liked_Questions #Top_Interview_Questions #String #Hash_Table #Sliding_Window
66
// #Algorithm_I_Day_6_Sliding_Window #Level_2_Day_14_Sliding_Window/Two_Pointer #Udemy_Strings
7-
// #Big_O_Time_O(n)_Space_O(1) #2023_12_03_Time_4_ms_(99.33%)_Space_19.1_MB_(68.83%)
7+
// #Top_Interview_150_Sliding_Window #Big_O_Time_O(n)_Space_O(1) #AI_can_be_used_to_solve_the_task
8+
// #2023_12_03_Time_4_ms_(99.33%)_Space_19.1_MB_(68.83%)
89

910
class Solution {
1011
/**

src/main/php/g0001_0100/s0004_median_of_two_sorted_arrays/Solution.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
namespace leetcode\g0001_0100\s0004_median_of_two_sorted_arrays;
44

55
// #Hard #Top_100_Liked_Questions #Top_Interview_Questions #Array #Binary_Search #Divide_and_Conquer
6-
// #Big_O_Time_O(log(min(N,M)))_Space_O(1) #2023_12_03_Time_23_ms_(88.34%)_Space_19.1_MB_(87.47%)
6+
// #Top_Interview_150_Binary_Search #Big_O_Time_O(log(min(N,M)))_Space_O(1)
7+
// #AI_can_be_used_to_solve_the_task #2023_12_03_Time_23_ms_(88.34%)_Space_19.1_MB_(87.47%)
78

89
class Solution {
910
/**

src/main/php/g0001_0100/s0005_longest_palindromic_substring/Solution.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
// #Medium #Top_100_Liked_Questions #Top_Interview_Questions #String #Dynamic_Programming
66
// #Data_Structure_II_Day_9_String #Algorithm_II_Day_14_Dynamic_Programming
7-
// #Dynamic_Programming_I_Day_17 #Udemy_Strings #Big_O_Time_O(n)_Space_O(n)
8-
// #2023_12_03_Time_13_ms_(98.57%)_Space_19.4_MB_(12.54%)
7+
// #Dynamic_Programming_I_Day_17 #Udemy_Strings #Top_Interview_150_Multidimensional_DP
8+
// #Big_O_Time_O(n)_Space_O(n) #2023_12_03_Time_13_ms_(98.57%)_Space_19.4_MB_(12.54%)
99

1010
class Solution {
1111
/**

src/main/php/g0001_0100/s0006_zigzag_conversion/Solution.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
namespace leetcode\g0001_0100\s0006_zigzag_conversion;
44

5-
// #Medium #String #2023_12_03_Time_12_ms_(80.63%)_Space_19.3_MB_(57.66%)
5+
// #Medium #String #Top_Interview_150_Array/String
6+
// #2023_12_03_Time_12_ms_(80.63%)_Space_19.3_MB_(57.66%)
67

78
class Solution {
89
/**

src/main/php/g0001_0100/s0009_palindrome_number/Solution.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
namespace leetcode\g0001_0100\s0009_palindrome_number;
44

5-
// #Easy #Math #Udemy_Integers #2023_12_03_Time_23_ms_(76.73%)_Space_19.4_MB_(5.93%)
5+
// #Easy #Math #Udemy_Integers #Top_Interview_150_Math
6+
// #2023_12_03_Time_23_ms_(76.73%)_Space_19.4_MB_(5.93%)
67

78
class Solution {
89
/**

src/main/php/g0001_0100/s0010_regular_expression_matching/Solution.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@
22

33
namespace leetcode\g0001_0100\s0010_regular_expression_matching;
44

5-
// #Hard #Top_100_Liked_Questions #Top_Interview_Questions #String #Dynamic_Programming #Recursion
6-
// #Udemy_Dynamic_Programming #Big_O_Time_O(m*n)_Space_O(m*n)
7-
// #2023_12_03_Time_10_ms_(64.52%)_Space_19.3_MB_(61.29%)
5+
// #Hard #Top_Interview_Questions #String #Dynamic_Programming #Recursion #Udemy_Dynamic_Programming
6+
// #Big_O_Time_O(m*n)_Space_O(m*n) #2023_12_03_Time_10_ms_(64.52%)_Space_19.3_MB_(61.29%)
87

98
class Solution {
109
private $cache;

src/main/php/g0001_0100/s0011_container_with_most_water/Solution.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
namespace leetcode\g0001_0100\s0011_container_with_most_water;
44

55
// #Medium #Top_100_Liked_Questions #Top_Interview_Questions #Array #Greedy #Two_Pointers
6-
// #Algorithm_II_Day_4_Two_Pointers #Big_O_Time_O(n)_Space_O(1)
7-
// #2023_12_07_Time_177_ms_(88.58%)_Space_31.7_MB_(66.67%)
6+
// #LeetCode_75_Two_Pointers #Algorithm_II_Day_4_Two_Pointers #Top_Interview_150_Two_Pointers
7+
// #Big_O_Time_O(n)_Space_O(1) #2023_12_07_Time_177_ms_(88.58%)_Space_31.7_MB_(66.67%)
88

99
class Solution {
1010
/**

0 commit comments

Comments
 (0)
0