LeetCode p14 Longest Common Prefix 题解
1.题目:
Write a function to find the longest common prefix string amongst an array of strings.
题意:
输入一个字符数组,找出他们最长的共同前缀字符串。
2.解题思路:
见代码
strs[i].indexOf(s) //查找字符或者子串第一次出现的地方
3.代码
1 |
|
很高兴遇见你~
Write a function to find the longest common prefix string amongst an array of strings.
题意:
输入一个字符数组,找出他们最长的共同前缀字符串。
见代码
strs[i].indexOf(s) //查找字符或者子串第一次出现的地方
1 |
|