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
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) #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%)
6
7
7
8
class Solution {
8
9
fun lengthOfLongestSubstring (s : String ): Int {
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) #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%)
5
6
6
7
class Solution {
7
8
fun findMedianSortedArrays (nums1 : IntArray , nums2 : IntArray ): Double {
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_139_ms_(95.24%)_Space_82.2_MB_(19.05%)
5
5
6
6
class Solution {
You can’t perform that action at this time.
0 commit comments