74 / 74 个通过测试用例
状态:通过
执行用时:1 ms
内存消耗:35.9 MB
class Solution {
public int strStr(String haystack, String needle) {
if (needle.equals(""))return 0;
return haystack.indexOf(needle);
}
}
74 / 74 个通过测试用例
状态:通过
执行用时:1 ms
内存消耗:35.9 MB
class Solution {
public int strStr(String haystack, String needle) {
if (needle.equals(""))return 0;
return haystack.indexOf(needle);
}
}