#ifndef S0076_MINIMUM_WINDOW_SUBSTRING_HPP #define S0076_MINIMUM_WINDOW_SUBSTRING_HPP #include #include #include using namespace std; class S0076 { public: string minWindow(string s, string t); unordered_map ori, cnt; bool check(); }; #endif