18 lines
302 B
C++
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
|