Problem
Implement strStr().
Returns the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack.
Note
有substring,为何不用。
Solution
public class Solution {
public int strStr(String h, String n) {
int len = n.length();
for (int i = 0; i <= h.length()-len; i++) {
if (h.substring(i, i+len).equals(n)) return i;
}
return -1;
}
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。