We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da838de commit a4b3e8bCopy full SHA for a4b3e8b
src/main/java/com/fishercoder/solutions/_16.java
@@ -2,15 +2,6 @@
2
3
import java.util.Arrays;
4
5
-/**
6
- * 16. 3Sum Closest
7
- *
8
- * Given an array S of n integers, find three integers in S such that the sum is closest to a given number, target.
9
- * Return the sum of the three integers. You may assume that each input would have exactly one solution.
10
- * For example, given array S = {-1 2 1 -4}, and target = 1.
11
- * The sum that is closest to the target is 2. (-1 + 2 + 1 = 2).
12
- */
13
-
14
public class _16 {
15
16
public static class Solution1 {
0 commit comments