Source: https://oj.leetcode.com/problems/longest-common-prefix/

Write a function to find the longest common prefix string amongst an array of strings.

Hint:   strs=['abc','ab','a']

strs=[

'abc',

'ab',

'a',

]

We can think of strs as a column length varied matrix

 

 

class Solution:
    # @return a string
    def longestCommonPrefix(self, strs):
        #横向扫描,每个字符串与第0 个字符串,从左到右比较,直到遇到一个不匹配,
        #然后继续下一个字符串
        #时间复杂度O(n1+n2+...)
        if len(strs) == 0: return ""
        minL = min([len(word) for word in strs])
        for j in range(minL):
            for i in range(1, len(strs)):
                if strs[i][j] != strs[0][j]:
                    return strs[0][:j]
        return strs[0][:minL]

 

相关文章:

  • 2022-03-07
  • 2021-09-18
  • 2021-09-14
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-11-15
  • 2022-03-05
  • 2022-01-18
  • 2021-08-02
  • 2021-09-25
  • 2022-02-24
  • 2021-08-26
相关资源
相似解决方案