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