leetcode/include/s0018_4sum.hpp

15 lines
200 B
C++
Raw Normal View History

2022-11-04 08:35:55 +00:00
#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