Medium
Given an array nums and a value target, find three integers whose sum is closest to target and return that sum.
nums
target
Input: nums = [-1,2,1,-4], target = 1 Output: 2
Input: nums = [0,0,0], target = 1 Output: 0