10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3e95d7 commit aeb0de4Copy full SHA for aeb0de4
README.md
@@ -6,7 +6,7 @@ List is periodically updated
6
7
### #16. 3Sum Closest
8
```
9
-const threeSumClosest = function(nums, target) {
+const threeSumClosest = function(nums, target) {
10
nums.sort((a, b) => a - b);
11
12
let closerSum = Infinity;
0 commit comments