Я запустил небольшую программу C ++: < /p>
#include
#include
#include
using namespace std;
class Solution
{
public:
string minWindow(string s, string t)
{
vector V;
map tMap;
map sMap;
map Map;
int left = 0, right = 0;
for (int i = 0; i < t.size(); i++)
{
tMap[t]++;
}
cout
Подробнее здесь: https://stackoverflow.com/questions/792 ... ode-on-mac