题目:https://leetcode.com/problems/3sum-closest/
代码(github):https://github.com/illuz/leetcode
在给定数列中找出三个数,使和最接近 target。
与 015. 3Sum (Medium) 类似,甚至更简单。
还是先排序,再左右夹逼。
Name | Name | Last commit date | ||
---|---|---|---|---|
parent directory.. | ||||
题目:https://leetcode.com/problems/3sum-closest/
代码(github):https://github.com/illuz/leetcode
在给定数列中找出三个数,使和最接近 target。
与 015. 3Sum (Medium) 类似,甚至更简单。
还是先排序,再左右夹逼。