Find the smallest window in a string containing all characters of another string

后端 未结 0 331
不思量自难忘°
不思量自难忘° 2021-01-17 05:57
string smallestWindow (string S, string P){
    if(P.length()>S.length()) {
        return "-1";
    }
    mapmap2;
    for(int i = 0; i         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题