Skip to content

Latest commit

 

History

History

0016.3sum-closest

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

题目描述

给定一个包括 n 个整数的数组 nums 和 一个目标值 target。找出 nums 中的三个整数,使得它们的和与 target 最接近。返回这三个数的和。假定每组输入只存在唯一答案。

例如,给定数组 nums = [-1,2,1,-4], 和 target = 1.

与 target 最接近的三个数的和为 2. (-1 + 2 + 1 = 2).

解题思路

具体解法

Golang