标签: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); } }
标签:indexof string solution pre col you -- The dex
原文地址:https://www.cnblogs.com/cnmoti/p/10817140.html