leetcode/include/s0030_substring_with_concat...

16 lines
301 B
C++
Raw Normal View History

2022-11-21 13:15:56 +00:00
#ifndef S0030_SUBSTRING_WITH_CONCATENATION_OF_ALL_WORDS_HPP
#define S0030_SUBSTRING_WITH_CONCATENATION_OF_ALL_WORDS_HPP
2022-11-16 02:58:20 +00:00
#include <vector>
#include <string>
#include <unordered_map>
using namespace std;
2022-11-30 10:20:36 +00:00
class S0030 {
2022-11-16 02:58:20 +00:00
public:
vector<int> findSubstring(string s, vector<string>& words);
};
#endif