File tree 6 files changed +8
-6
lines changed
s0003_longest_substring_without_repeating_characters
s0004_median_of_two_sorted_arrays
s3310_remove_methods_from_project
s3319_k_th_largest_perfect_subtree_size_in_binary_tree
s3327_check_if_dfs_strings_are_palindromes
s3331_find_subtree_sizes_after_changes
6 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 2
2
3
3
// #Medium #Top_100_Liked_Questions #Top_Interview_Questions #String #Hash_Table #Sliding_Window
4
4
// #Algorithm_I_Day_6_Sliding_Window #Level_2_Day_14_Sliding_Window/Two_Pointer #Udemy_Strings
5
- // #Big_O_Time_O(n)_Space_O(1) #2024_01_04_Time_2_ms_(99.52%)_Space_43.6_MB_(75.37%)
5
+ // #Big_O_Time_O(n)_Space_O(1) #AI_can_be_used_to_solve_the_task
6
+ // #2024_01_04_Time_2_ms_(99.52%)_Space_43.6_MB_(75.37%)
6
7
7
8
public class Solution {
8
9
public int lengthOfLongestSubstring (String s ) {
Original file line number Diff line number Diff line change 1
1
package g0001_0100 .s0004_median_of_two_sorted_arrays ;
2
2
3
3
// #Hard #Top_100_Liked_Questions #Top_Interview_Questions #Array #Binary_Search #Divide_and_Conquer
4
- // #Big_O_Time_O(log(min(N,M)))_Space_O(1) #2024_01_04_Time_1_ms_(100.00%)_Space_46.5_MB_(7.80%)
4
+ // #Big_O_Time_O(log(min(N,M)))_Space_O(1) #AI_can_be_used_to_solve_the_task
5
+ // #2024_01_04_Time_1_ms_(100.00%)_Space_46.5_MB_(7.80%)
5
6
6
7
@ SuppressWarnings ("java:S2234" )
7
8
public class Solution {
Original file line number Diff line number Diff line change 1
1
package g3301_3400 .s3310_remove_methods_from_project ;
2
2
3
- // #Medium #Graph # Depth_First_Search #Breadth_First_Search
3
+ // #Medium #Depth_First_Search #Breadth_First_Search #Graph
4
4
// #2024_10_08_Time_41_ms_(99.76%)_Space_154.8_MB_(55.29%)
5
5
6
6
import java .util .ArrayList ;
Original file line number Diff line number Diff line change 1
1
package g3301_3400 .s3319_k_th_largest_perfect_subtree_size_in_binary_tree ;
2
2
3
- // #Medium #Sorting #Tree #Binary_Tree #Depth_First_Search
3
+ // #Medium #Sorting #Depth_First_Search #Tree #Binary_Tree
4
4
// #2024_10_15_Time_10_ms_(87.48%)_Space_45.3_MB_(50.46%)
5
5
6
6
import com_github_leetcode .TreeNode ;
Original file line number Diff line number Diff line change 1
1
package g3301_3400 .s3327_check_if_dfs_strings_are_palindromes ;
2
2
3
- // #Hard #Array #String #Hash_Table #Tree #Hash_Function #Depth_First_Search
3
+ // #Hard #Array #String #Hash_Table #Depth_First_Search #Tree #Hash_Function
4
4
// #2024_10_22_Time_159_ms_(90.40%)_Space_93.9_MB_(80.80%)
5
5
6
6
import java .util .ArrayList ;
Original file line number Diff line number Diff line change 1
1
package g3301_3400 .s3331_find_subtree_sizes_after_changes ;
2
2
3
- // #Medium #Array #String #Hash_Table #Tree #Depth_First_Search
3
+ // #Medium #Array #String #Hash_Table #Depth_First_Search #Tree
4
4
// #2024_10_29_Time_166_ms_(52.73%)_Space_86.3_MB_(8.86%)
5
5
6
6
import java .util .ArrayList ;
You can’t perform that action at this time.
0 commit comments