leetcode 14 最長公共字首

2021-09-23 01:49:17 字數 1119 閱讀 8123

編寫乙個函式來查詢字串陣列中的最長公共字首。

如果不存在公共字首,返回空字串""

示例 1:

輸入:["flower","flow","flight"]輸出:"fl"
示例 2:

輸入:["dog","racecar","car"]輸出:""解釋:輸入不存在公共字首。
說明:

所有輸入只包含小寫字母a-z

class solution(object):

def longestindex(self, strs):

i = 0

while true:

cur_char = ''

for s in strs:

if len(s) < i + 1:

return i - 1

if not cur_char:

if len(s) >= i + 1:

cur_char = s[i]

else:

if not s[i] == cur_char:

return i - 1

i += 1

def longestcommonprefix(self, strs):

""":type strs: list[str]

:rtype: str

"""if len(strs) == 0:

return ''

longest_index = self.longestindex(strs)

if longest_index < 0:

return ''

if longest_index == 0:

return strs[0][0]

charlist = list(strs[0])

return ''.join(charlist[:longest_index+1])

LeetCode14最長公共字首

編寫乙個函式來查詢字串陣列中最長的公共字首字串。例如 輸出 ab 比較乙個字串陣列的最長公共字首,遍歷整個字串陣列,建立乙個字串用來儲存當前最長公共字串,逐個比較,不斷更新公共字串內容。情況比較多,考慮周全,不然可能會陣列溢位。公共字串的長度和當前比較字串的長度大小的比較,避免陣列越界,還有空字串的...

LeetCode 14 最長公共字首

編寫乙個函式來查詢字串陣列中最長的公共字首字串。用第乙個字串s,比較strs的每個字串的公共字首,並記錄字首有m位,之後輸出s的前m位字元即可。但是在輸出過程中,使用了如下的賦值方式 for int i 0 i m i ans i s i 在string型別中,內部的成員是private的,所以不能...

LeetCode14 最長公共字首

題目描述 編寫乙個函式來查詢字串陣列中的最長公共字首。如果不存在公共字首,返回空字串 示例 1 輸入 flower flow flight 輸出 fl 示例 2 輸入 dog racecar car 輸出 解釋 輸入不存在公共字首。說明 所有輸入只包含小寫字母a z。如下 class solutio...