leetcode/include/s0016_3sum_closest.hpp
2022-11-30 18:20:36 +08:00

15 lines
213 B
C++

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