leetcode/include/s0076_minimum_window_substring.hpp
2022-11-30 16:30:40 +08:00

18 lines
302 B
C++

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