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