知识点

字符串匹配

思路

可以上KMP,但没必要;直接暴力匹配也行,我选择string的库函数

AC Code(C++)

class Solution {
public:
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     * 
     * @param message string字符串 
     * @param keyword string字符串 
     * @return int整型
     */
    int findKeyword(string message, string keyword) {
        auto res = message.find(keyword);
        return res == string::npos? -1 : res;
    }
};