会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
行尸走肉
一个小程序员的成长历程
博客园
首页
新随笔
联系
管理
订阅
2020年4月3日
leetcode 14 最长公共子串
摘要: 原题点这里 水平扫描:依次取每个str的第i个字符,若相同,则公共子串+1,否则结束。 public static String longestCommonPrefix(String[] strs) { int strNum = strs.length; if(strNum==1) return s
阅读全文
posted @ 2020-04-03 20:54 超级学渣渣
阅读(1579)
评论(0)
推荐(0)
编辑
公告