Skip to content

Commit 5d5f39b

Browse files
authored
Updated readme and tags
1 parent 52d720f commit 5d5f39b

File tree

86 files changed

+353
-323
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

+353
-323
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2023 Valentyn Kolesnikov
3+
Copyright (c) 2023-2025 Valentyn Kolesnikov
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

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

src/main/scala/g0001_0100/s0001_two_sum/Solution.scala

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

33
// #Easy #Top_100_Liked_Questions #Top_Interview_Questions #Array #Hash_Table
4-
// #Data_Structure_I_Day_2_Array #Level_1_Day_13_Hashmap #Udemy_Arrays #Big_O_Time_O(n)_Space_O(n)
4+
// #Data_Structure_I_Day_2_Array #Level_1_Day_13_Hashmap #Udemy_Arrays #Top_Interview_150_Hashmap
5+
// #Big_O_Time_O(n)_Space_O(n) #AI_can_be_used_to_solve_the_task
56
// #2024_05_15_Time_680_ms_(76.33%)_Space_59.5_MB_(64.20%)
67

78
object Solution {

src/main/scala/g0001_0100/s0002_add_two_numbers/Solution.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ package g0001_0100.s0002_add_two_numbers
22

33
// #Medium #Top_100_Liked_Questions #Top_Interview_Questions #Math #Linked_List #Recursion
44
// #Data_Structure_II_Day_10_Linked_List #Programming_Skills_II_Day_15
5-
// #Big_O_Time_O(max(N,M))_Space_O(max(N,M))
6-
// #2023_10_17_Time_571_ms_(75.12%)_Space_58.8_MB_(68.16%)
5+
// #Top_Interview_150_Linked_List #Big_O_Time_O(max(N,M))_Space_O(max(N,M))
6+
// #AI_can_be_used_to_solve_the_task #2023_10_17_Time_571_ms_(75.12%)_Space_58.8_MB_(68.16%)
77

88
import com_github_leetcode.ListNode
99

src/main/scala/g0001_0100/s0003_longest_substring_without_repeating_characters/Solution.scala

Lines 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_10_17_Time_482_ms_(96.91%)_Space_55.1_MB_(89.18%)
5+
// #Top_Interview_150_Sliding_Window #Big_O_Time_O(n)_Space_O(1) #AI_can_be_used_to_solve_the_task
6+
// #2023_10_17_Time_482_ms_(96.91%)_Space_55.1_MB_(89.18%)
67

78
object Solution {
89
def lengthOfLongestSubstring(s: String): Int = {

src/main/scala/g0001_0100/s0004_median_of_two_sorted_arrays/Solution.scala

Lines 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_10_29_Time_644_ms_(80.82%)_Space_57.9_MB_(91.78%)
4+
// #Top_Interview_150_Binary_Search #Big_O_Time_O(log(min(N,M)))_Space_O(1)
5+
// #AI_can_be_used_to_solve_the_task #2023_10_29_Time_644_ms_(80.82%)_Space_57.9_MB_(91.78%)
56

67
object Solution {
78
@SuppressWarnings(Array("scala:S3776"))

src/main/scala/g0001_0100/s0005_longest_palindromic_substring/Solution.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ package g0001_0100.s0005_longest_palindromic_substring
22

33
// #Medium #Top_100_Liked_Questions #Top_Interview_Questions #String #Dynamic_Programming
44
// #Data_Structure_II_Day_9_String #Algorithm_II_Day_14_Dynamic_Programming
5-
// #Dynamic_Programming_I_Day_17 #Udemy_Strings #Big_O_Time_O(n)_Space_O(n)
6-
// #2023_10_29_Time_502_ms_(87.65%)_Space_54.1_MB_(100.00%)
5+
// #Dynamic_Programming_I_Day_17 #Udemy_Strings #Top_Interview_150_Multidimensional_DP
6+
// #Big_O_Time_O(n)_Space_O(n) #2023_10_29_Time_502_ms_(87.65%)_Space_54.1_MB_(100.00%)
77

88
object Solution {
99
def longestPalindrome(s: String): String = {

src/main/scala/g0001_0100/s0006_zigzag_conversion/Solution.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package g0001_0100.s0006_zigzag_conversion
22

3-
// #Medium #String #2023_11_09_Time_542_ms_(85.71%)_Space_55.7_MB_(90.48%)
3+
// #Medium #String #Top_Interview_150_Array/String #Big_O_Time_O(n)_Space_O(n)
4+
// #2023_11_09_Time_542_ms_(85.71%)_Space_55.7_MB_(90.48%)
45

56
import scala.collection.mutable
67

src/main/scala/g0001_0100/s0007_reverse_integer/Solution.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package g0001_0100.s0007_reverse_integer
22

3-
// #Medium #Top_Interview_Questions #Math #Udemy_Integers
3+
// #Medium #Top_Interview_Questions #Math #Udemy_Integers #Big_O_Time_O(log10(x))_Space_O(1)
44
// #2023_11_09_Time_405_ms_(90.16%)_Space_52.3_MB_(31.15%)
55

66
object Solution {

src/main/scala/g0001_0100/s0008_string_to_integer_atoi/Solution.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package g0001_0100.s0008_string_to_integer_atoi
22

3-
// #Medium #Top_Interview_Questions #String #2023_11_09_Time_441_ms_(100.00%)_Space_54.7_MB_(67.86%)
3+
// #Medium #Top_Interview_Questions #String #Big_O_Time_O(n)_Space_O(n)
4+
// #2023_11_09_Time_441_ms_(100.00%)_Space_54.7_MB_(67.86%)
45

56
object Solution {
67
@SuppressWarnings(Array("scala:S3776"))

0 commit comments

Comments
 (0)