
g0001_0100.s0001_two_sum.solution.rb Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leetcode-in-all Show documentation
Show all versions of leetcode-in-all Show documentation
104 LeetCode algorithm problem solutions
# #Easy #Top_100_Liked_Questions #Top_Interview_Questions #Array #Hash_Table
# #Data_Structure_I_Day_2_Array #Level_1_Day_13_Hashmap #Udemy_Arrays #Big_O_Time_O(n)_Space_O(n)
# #2023_11_08_Time_57_ms_(89.38%)_Space_212.2_MB_(11.34%)
# @param {Integer[]} nums
# @param {Integer} target
# @return {Integer[]}
def two_sum(nums, target)
dict = {}
nums.each_with_index do |n, i|
if dict[target - n]
return dict[target - n], i
end
dict[n] = i
end
[-1, -1]
end
© 2015 - 2025 Weber Informatics LLC | Privacy Policy