Skip to content

Commit 6d6e358

Browse files
authoredJan 29, 2025
Added new tag Top_Interview_150
1 parent 3abd21a commit 6d6e358

File tree

149 files changed

+615
-291
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

149 files changed

+615
-291
lines changed
 

‎README.md

Lines changed: 387 additions & 119 deletions

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
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)
5-
// #AI_can_be_used_to_solve_the_task #2023_07_03_Time_202_ms_(91.18%)_Space_38.1_MB_(76.07%)
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
6+
// #2023_07_03_Time_202_ms_(91.18%)_Space_38.1_MB_(76.07%)
67

78
class Solution {
89
fun twoSum(numbers: IntArray, target: Int): IntArray {

0 commit comments

Comments
 (0)
Please sign in to comment.