16. 3Sum Closest

Given an array nums of n integers 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:

Given array nums = [-1, 2, 1, -4], and target = 1.

The sum that is closest to the target is 2. (-1 + 2 + 1 = 2).

class Solution:
    def threeSumClosest(self, nums, target):
        """
        :type nums: List[int]
        :type target: int
        :rtype: int
        """
        res = float('inf')
        nums.sort()
        for i in range(len(nums) - 2):
            if i>0 and nums[i]==nums[i-1]:
                continue
            left, right = i + 1, len(nums) - 1
            while left < right:
                cur = nums[i] + nums[left] + nums[right] - target
                if abs(res)>abs(cur):
                    res = cur
                if cur==0:
                    return target
                elif cur>0:
                    right -= 1
                else:
                    left += 1
        return res + target
原文地址:https://www.cnblogs.com/bernieloveslife/p/9783345.html