题目
编写一个函数来查找字符串数组中的最长公共前缀。
如果不存在公共前缀,返回空字符串 “”。
示例 1:
输入: [“flower”,”flow”,”flight”]
输出: “fl”
示例 2:
输入: [“dog”,”racecar”,”car”]
输出: “”
解释: 输入不存在公共前缀。
说明: 所有输入只包含小写字母 a-z 。
思路
- 空数组的最长公共前缀肯定为空啦
- 对于非空数组,首先对数组中的字符串进行排序,那么按照排序规则,第一个字符和最后一个字符肯定是最不相同的两个字符。只要找它俩的公共前缀,就能得到该字符串数组中的最长公共前缀。
解答
class Solution:
def longestCommonPrefix(self, strs):
"""
:type strs: List[str]
:rtype: str
"""
ans = ""
l = len(strs)
if l == 0:
return ans
strs = sorted(strs)
for i in range(len(strs[0])):
if strs[0][i] == strs[l-1][i]:
ans += strs[0][i]
else:
break
return ans