leetcode/include/s0016_3sum_closest.hpp
Sainnhe Park 4ec72db468
All checks were successful
continuous-integration/drone/push Build is passing
s0016
2022-11-04 15:03:06 +08:00

15 lines
208 B
C++

#ifndef S0016_3SUM_CLOSEST
#define S0016_3SUM_CLOSEST
#include <vector>
#include <algorithm>
using namespace std;
class Solution {
public:
int threeSumClosest(vector<int>& nums, int target);
};
#endif