题解 | #字符串字符匹配#

字符串字符匹配

https://www.nowcoder.com/practice/22fdeb9610ef426f9505e3ab60164c93

#include <iostream>
using namespace std;

int main() {
    string str1;
    string str2;
    cin >> str1 >> str2;
    if (str1.size() > str2.size())
    {
        string temp = str2;
        str2 = str1;
        str1 = temp;
    }

    int cnt = 0;

    for (int i = 0;i < str1.size();i++)
    {
        if (str2.find(str1[i]) != string::npos)
        {
            cnt += 1;
        }
    }

    if (cnt == str1.size())
    {
        cout << "true";
    }
    else 
    {
        cout << "false";
    }

}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

11-09 11:01
济南大学 Java
Java抽象带篮子:外卖项目真得美化一下,可以看看我的详细的外卖话术帖子
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务