摘要: class Solution { public int strStr(String haystack, String needle) { int i = 0, j = 0; int a = haystack.length(); int b = needle.length(); if(a<b) ret 阅读全文
posted @ 2018-10-05 23:37 Roni_i 阅读(176) 评论(0) 推荐(0) 编辑