-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path0016-3sum-closest.rb
More file actions
65 lines (50 loc) · 1.46 KB
/
0016-3sum-closest.rb
File metadata and controls
65 lines (50 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# frozen_string_literal: true
# 16. 3Sum Closest
# https://leetcode.com/problems/3sum-closest/
# Medium
=begin
Given an integer array nums of length n and an integer target, find three integers in nums such that the sum is closest to target.
Return the sum of the three integers.
You may assume that each input would have exactly one solution.
Example 1:
Input: nums = [-1,2,1,-4], target = 1
Output: 2
Explanation: The sum that is closest to the target is 2. (-1 + 2 + 1 = 2).
Example 2:
Input: nums = [0,0,0], target = 1
Output: 0
Explanation: The sum that is closest to the target is 0. (0 + 0 + 0 = 0).
Constraints:
* 3 <= nums.length <= 500
* -1000 <= nums[i] <= 1000
* -104 <= target <= 104
=end
# @param {Integer[]} nums
# @param {Integer} target
# @return {Integer}
def three_sum_closest(nums, target)
nums.sort!
result = Float::INFINITY
(0..nums.size - 3).each do |i|
left = i + 1
right = nums.size - 1
next if i.positive? && nums[i] == nums[i - 1]
while left < right
sum = nums[i] + nums[left] + nums[right]
return sum if sum == target
sum < target ? left += 1 : right -= 1
result = sum if (target - sum).abs < (target - result).abs
end
end
result
end
# **************** #
# TEST #
# **************** #
require "test/unit"
class Test_three_sum_closest < Test::Unit::TestCase
def test_
assert_equal(2, three_sum_closest([-1, 2, 1, -4], 1))
assert_equal(0, three_sum_closest([0, 0, 0], 1))
end
end