28 Implement strStr()

總結:

  1. 注意邊界: i
  2. 注意 .equals() 和 == 的分別, ==是x斷數值, .equals() x斷string
class Solution {
    public int strStr(String haystack, String needle) {
        
        int len= needle.length();
        for (int i=0; i

你可能感兴趣的:(28 Implement strStr())