Sainnhe Park
1de1398897
All checks were successful
continuous-integration/drone/push Build is passing
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
|