LeetCode: Single Number III
Question
Given an integer array nums, in which exactly two elements appear only once and all the other elements appear exactly twice. Find the two elements that appear only once. You can return the answer in any order.
Follow up: Your algorithm should run in linear runtime complexity. Could you implement it using only constant space complexity?
Solution
def single_number(nums)
data_set = Hash.new(0)
nums.each do |num|
data_set[num] += 1
end
data_set.select { |k, v| v == 1 }.keys
end
Comments