s0016
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-11-04 15:03:06 +08:00
parent cc66004929
commit 4ec72db468
3 changed files with 60 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#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