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