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