leetcode/include/s0030_substring_with_concatenation_of_all_words.hpp
2022-11-30 18:20:36 +08:00

16 lines
301 B
C++

#ifndef S0030_SUBSTRING_WITH_CONCATENATION_OF_ALL_WORDS_HPP
#define S0030_SUBSTRING_WITH_CONCATENATION_OF_ALL_WORDS_HPP
#include <vector>
#include <string>
#include <unordered_map>
using namespace std;
class S0030 {
public:
vector<int> findSubstring(string s, vector<string>& words);
};
#endif