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