LeetCode - Implement strStr()

                  自从JavaAPI&RegExp用熟练了之后就变得越来越任性越来越懒了):

 

public class Solution {
    public int strStr(String haystack, String needle) {
        return haystack.indexOf(needle);
    }
}

 

posted @ 2015-04-03 10:52  Pickle  阅读(134)  评论(0编辑  收藏  举报