15 lines
200 B
C++
15 lines
200 B
C++
|
#ifndef S0018_4SUM
|
||
|
#define S0018_4SUM
|
||
|
|
||
|
#include <vector>
|
||
|
#include <algorithm>
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
class Solution {
|
||
|
public:
|
||
|
vector<vector<int>> fourSum(vector<int>& nums, int target);
|
||
|
};
|
||
|
|
||
|
#endif
|