Recca Chao 的 gitHub page

推廣網站開發,包含 Laravel 和 Kotlin 後端撰寫、自動化測試、讀書心得等。Taiwan Kotlin User Group 管理員。

View on GitHub

Hi, here’s your problem today. This problem was recently asked by Google:

Given a list of numbers and a target number n, find 3 numbers in the list that sums closest to the target number n. There may be multiple ways of creating the sum closest to the target number, you can return any combination in any order.

Here’s an example and some starter code.

def closest_3sum(nums, target):

Fill this in.

print(closest_3sum([2, 1, -5, 4], -1))

Closest sum is -5+1+2 = -2 OR -5+1+4 = 0

print [-5, 1, 2]