码迷,mamicode.com
首页 > 其他好文 > 详细

LintCode 13---字符串查找

时间:2019-05-06 01:33:48      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:indexof   string   solution   pre   col   you   --   The   dex   

public class Solution {
    /**
     * @param source: 
     * @param target: 
     * @return: return the index
     */
    public int strStr(String source, String target) {
        // Write your code here
            return source.indexOf(target);
    }
}

 

LintCode 13---字符串查找

标签:indexof   string   solution   pre   col   you   --   The   dex   

原文地址:https://www.cnblogs.com/cnmoti/p/10817140.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!