File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
s0003_longest_substring_without_repeating_characters
s0004_median_of_two_sorted_arrays
g3301_3400/s3331_find_subtree_sizes_after_changes Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,8 @@ package g0001_0100.s0003_longest_substring_without_repeating_characters
22
33// #Medium #Top_100_Liked_Questions #Top_Interview_Questions #String #Hash_Table #Sliding_Window
44// #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) #2023_07_03_Time_201_ms_(87.28%)_Space_38.3_MB_(60.85%)
5+ // #Big_O_Time_O(n)_Space_O(1) #AI_can_be_used_to_solve_the_task
6+ // #2023_07_03_Time_201_ms_(87.28%)_Space_38.3_MB_(60.85%)
67
78class Solution {
89 fun lengthOfLongestSubstring (s : String ): Int {
Original file line number Diff line number Diff line change 11package g0001_0100.s0004_median_of_two_sorted_arrays
22
33// #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) #2023_07_03_Time_293_ms_(75.96%)_Space_47.5_MB_(64.85%)
4+ // #Big_O_Time_O(log(min(N,M)))_Space_O(1) #AI_can_be_used_to_solve_the_task
5+ // #2023_07_03_Time_293_ms_(75.96%)_Space_47.5_MB_(64.85%)
56
67class Solution {
78 fun findMedianSortedArrays (nums1 : IntArray , nums2 : IntArray ): Double {
Original file line number Diff line number Diff line change 11package g3301_3400.s3331_find_subtree_sizes_after_changes
22
3- // #Medium #Array #String #Hash_Table #Tree #Depth_First_Search
3+ // #Medium #Array #String #Hash_Table #Depth_First_Search #Tree
44// #2024_10_29_Time_139_ms_(95.24%)_Space_82.2_MB_(19.05%)
55
66class Solution {
You can’t perform that action at this time.
0 commit comments