Expand description

问题 #16《最接近的三数之和》

问题描述

给你一个长度为 n 的整数数组 nums 和 一个目标值 target。请你从 nums 中选出三个 整数,使它们的和与 target 最接近。

返回这三个数的和。

假定每组输入只存在恰好一个解。

示例 1:

输入:nums = [-1,2,1,-4], target = 1
输出:2
解释:与 target 最接近的和是 2 (-1 + 2 + 1 = 2) 。

示例 2:

输入:nums = [0,0,0], target = 1
输出:0

提示:

  • 3 $\leqslant$ nums.length $\leqslant$ 1000
  • -1000 $\leqslant$ nums[i] $\leqslant$ 1000
  • $-10^4$ $\leqslant$ target $\leqslant$ $10^4$

来源:https://leetcode.cn/problems/3sum-closest/

Functions

最接近的三数之和