python查找最长公共前缀

Posted 秋雨秋雨秋雨

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python查找最长公共前缀相关的知识,希望对你有一定的参考价值。

编写一个函数来查找字符串数组中的最长公共前缀。

如果不存在公共前缀,返回空字符串 ""

示例 1:

输入: ["flower","flow","flight"]
输出: "fl"

示例 2:

输入: ["dog","racecar","car"]
输出: ""
解释: 输入不存在公共前缀。

说明:

所有输入只包含小写字母 a-z 。

class Solution:
    def longestCommonPrefix(self, strs):
        """
        :type strs: List[str]
        :rtype: str
        """
        if not strs:
            return ‘‘
        s1 = min(strs)
        s2 = max(strs)
        for i,j in  enumerate(s1):
            if j != s2[i]:
                return s1[:i]
        return s1
if __name__ == __main__:
    s=Solution()
    print(s.longestCommonPrefix(["flower","flow","flight"]))

 

以上是关于python查找最长公共前缀的主要内容,如果未能解决你的问题,请参考以下文章

Leetcode练习(Python):字符串类:第14题:最长公共前缀:编写一个函数来查找字符串数组中的最长公共前缀。 如果不存在公共前缀,返回空字符串 ""。

Leetcode练习(Python):字符串类:第14题:最长公共前缀:编写一个函数来查找字符串数组中的最长公共前缀。 如果不存在公共前缀,返回空字符串 ""。

LeetCode5——最长公共前缀(python)

leetcode-14.最长公共前缀(图)

最长公共前缀(Python)

python(leetcode)-14最长公共前缀