Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit c8f324f

Browse filesBrowse files
authored
Improved tasks 3, 4, 3331
1 parent 72246c9 commit c8f324f
Copy full SHA for c8f324f

File tree

Expand file treeCollapse file tree

3 files changed

+5
-3
lines changed
Filter options
  • src/main/kotlin
    • g0001_0100
    • g3301_3400/s3331_find_subtree_sizes_after_changes
Expand file treeCollapse file tree

3 files changed

+5
-3
lines changed

‎src/main/kotlin/g0001_0100/s0003_longest_substring_without_repeating_characters/Solution.kt

Copy file name to clipboardExpand all lines: src/main/kotlin/g0001_0100/s0003_longest_substring_without_repeating_characters/Solution.kt
+2-1Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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

78
class Solution {
89
fun lengthOfLongestSubstring(s: String): Int {

‎src/main/kotlin/g0001_0100/s0004_median_of_two_sorted_arrays/Solution.kt

Copy file name to clipboardExpand all lines: src/main/kotlin/g0001_0100/s0004_median_of_two_sorted_arrays/Solution.kt
+2-1Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
package 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

67
class Solution {
78
fun findMedianSortedArrays(nums1: IntArray, nums2: IntArray): Double {

‎src/main/kotlin/g3301_3400/s3331_find_subtree_sizes_after_changes/Solution.kt

Copy file name to clipboardExpand all lines: src/main/kotlin/g3301_3400/s3331_find_subtree_sizes_after_changes/Solution.kt
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package 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

66
class Solution {

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.