leetcode/include/s0018_4sum.hpp

15 lines
205 B
C++
Raw Permalink Normal View History

2022-11-21 13:15:56 +00:00
#ifndef S0018_4SUM_HPP
#define S0018_4SUM_HPP
2022-11-04 08:35:55 +00:00
#include <vector>
#include <algorithm>
using namespace std;
2022-11-30 10:20:36 +00:00
class S0018 {
2022-11-04 08:35:55 +00:00
public:
vector<vector<int>> fourSum(vector<int>& nums, int target);
};
#endif