leetcode/include/s0076_minimum_window_substring.hpp

17 lines
283 B
C++

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