README ¶ 最接近的三数之和 给你一个长度为 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 <= nums.length <= 1000 -1000 <= nums[i] <= 1000 -104 <= target <= 104 Expand ▾ Collapse ▴ Documentation ¶ There is no documentation for this package. Source Files ¶ View all Source files 3sum-closest.go Click to show internal directories. Click to hide internal directories.