This commit is contained in:
2022-11-16 10:58:20 +08:00
parent 9f4193858f
commit 8901afccf4
3 changed files with 67 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#ifndef S0030_SUBSTRING_WITH_CONCATENATION_OF_ALL_WORDS
#define S0030_SUBSTRING_WITH_CONCATENATION_OF_ALL_WORDS
#include <vector>
#include <string>
#include <unordered_map>
using namespace std;
class Solution {
public:
vector<int> findSubstring(string s, vector<string>& words);
};
#endif