LeetCode最長公共字首(Python)
題目:編寫一個函式來查詢字串陣列中的最長公共字首。
如果不存在公共字首,返回空字串 “”。
示例 1:
輸入: ["flower","flow","flight"]
輸出: "fl"
示例 2:
輸入: ["dog","racecar","car"]
輸出: ""
解釋: 輸入不存在公共字首。
說明:
所有輸入只包含小寫字母 a-z 。
class Solution(object):
def longestCommonPrefix(self, strs):
"""
:type strs: List[str]
:rtype: str
"""
if not strs: return ''
s1 = min(strs)
s2 = max(strs)
for i,c in enumerate(s1):
if c != s2[i]:
return s1[:i]
return s1
相關文章
- LeetCode——python3最長公共字首——2020.11.24LeetCodePython
- 每日leetcode——最長公共字首LeetCode
- LeetCode-14. 最長公共字首LeetCode
- leetcode14.最長公共字首LeetCode
- #LeetCode14. 最長公共字首 @FDDLCLeetCode
- 最長公共字首
- LeetCode每日一題:最長公共字首(No.14)LeetCode每日一題
- LeetCode - 014 - 最長公共字首(longest-common-prefix)LeetCode
- leetcode爬坑史(一)-- [14] 最長公共字首LeetCode
- 14.最長公共字首
- 14. 最長公共字首
- 力扣最長公共字首力扣
- 14_最長公共字首
- 演算法:最長公共字首演算法
- LeeCode 14. 最長公共字首
- 每日一練(35):最長公共字首
- 力扣 14. 最長公共字首力扣
- 演算法之字串——最長公共字首演算法字串
- LeetCode 1143.最長公共子序列LeetCode
- ABC353E字典樹處理最長公共字首
- 2020-10-31 最長公共字首【簡單題14】
- 讓我們一起啃演算法----最長公共字首演算法
- 【完虐演算法】「字串-最長公共字首」5種方法腦洞大開演算法字串
- 最長公共子序列
- 最長公共子序列(JAVA)Java
- lCS(最長公共子串)
- 字串篇(python)—兩個字串的最長公共子序列字串Python
- 面試題:編寫一個函式來查詢字串陣列中的最長公共字首。 如果不存在公共字首,返回空字串 ""。(c++實現)面試題函式字串陣列C++
- 【LeetCode動態規劃#14】子序列系列題(最長遞增子序列、最長連續遞增序列、最長重複子陣列、最長公共子序列)LeetCode動態規劃陣列
- 最長公共子序列求方案數
- java 實現 最長公共子序列Java
- 最長公共子序列 Longest Common Subsequence
- 線性dp:最長公共子串
- 線性dp:最長公共子序列
- leetcode無重複字元的最長字串 python實現LeetCode字元字串Python
- python 動態規劃(揹包問題和最長公共子串)Python動態規劃
- 動態規劃-最長公共子序列動態規劃
- 動態規劃——最長公共子序列動態規劃