https://leetcode.com/problems/3sum-closest/ 1. 2022.01.30 시도 소요시간: 27분(5분 구상, 22분 코딩) class Solution { public int threeSumClosest(int[] nums, int target) { Arrays.sort(nums); int output = 5000; for (int i=0; i subTarget) { sum = judgeSum(nums, subTarget, sum, temp); right--; } } output = judgeSum(nums, target, output, nums[i]+sum); } return output; } private int judgeSum(int[] nums, int target, ..