Difficult:Medium
題目
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.
翻譯
給定一個長度為 n 的整數數組 nums 和一個整數目標,在 nums 中找到三個整數,使得總和最接近目標。
返回三個整數的和。
您可以假設每個輸入都只有一個解決方案。
範例
Example 1
1 | Input: nums = [-1,2,1,-4], target = 1 |
Example 2
1 | Input: nums = [0,0,0], target = 1 |
解題思路
1.先將陣列小到大排列
2.避免重複組合 第一個數字判斷數字是否跟上一個數字相同
3.相差大於min相差時 記錄起來
Solution
Code 1 :
1 | var threeSumClosest=function(nums, target) { |