s0015
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-11-03 18:25:01 +08:00
parent 20463a604d
commit cc66004929
3 changed files with 148 additions and 0 deletions

20
include/s0015_3sum.hpp Normal file
View File

@@ -0,0 +1,20 @@
#ifndef S0015_3SUM
#define S0015_3SUM
#include <vector>
#include <unordered_map>
#include <algorithm>
using namespace std;
class Solution1 {
public:
vector<vector<int>> threeSum(vector<int>& nums);
};
class Solution2 {
public:
vector<vector<int>> threeSum(vector<int>& nums);
};
#endif