LintCode 13---字符串查找
Posted cnmoti
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LintCode 13---字符串查找相关的知识,希望对你有一定的参考价值。
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---字符串查找的主要内容,如果未能解决你的问题,请参考以下文章