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——最長公共字首LeetCode
- leetcode14.最長公共字首LeetCode
- LeetCode-14. 最長公共字首LeetCode
- 最長公共字首
- #LeetCode14. 最長公共字首 @FDDLCLeetCode
- 14. 最長公共字首
- 14_最長公共字首
- leetcode爬坑史(一)-- [14] 最長公共字首LeetCode
- LeetCode每日一題:最長公共字首(No.14)LeetCode每日一題
- 演算法:最長公共字首演算法
- LeetCode——python3最長公共字首——2020.11.24LeetCodePython
- LeeCode 14. 最長公共字首
- LeetCode - 014 - 最長公共字首(longest-common-prefix)LeetCode
- 演算法之字串——最長公共字首演算法字串
- Longest Common Prefix字串最長公共字首問題字串
- ABC353E字典樹處理最長公共字首
- [LeetCode] Longest Common Prefix 最長共同字首LeetCode
- 讓我們一起啃演算法----最長公共字首演算法
- LeetCode 1143.最長公共子序列LeetCode
- 最長公共子序列
- 【完虐演算法】「字串-最長公共字首」5種方法腦洞大開演算法字串
- 最長公共子序列(JAVA)Java
- lCS(最長公共子串)
- 面試題:編寫一個函式來查詢字串陣列中的最長公共字首。 如果不存在公共字首,返回空字串 ""。(c++實現)面試題函式字串陣列C++
- 字串篇(python)—兩個字串的最長公共子序列字串Python
- java 實現 最長公共子序列Java
- 最長公共子序列求方案數
- 線性dp:最長公共子序列
- 線性dp:最長公共子串
- 【LeetCode動態規劃#14】子序列系列題(最長遞增子序列、最長連續遞增序列、最長重複子陣列、最長公共子序列)LeetCode動態規劃陣列
- 動態規劃-最長公共子序列動態規劃
- 動態規劃——最長公共子序列動態規劃
- 演算法題:最長公共子序列演算法
- 兩個字串的最長公共子串字串
- python 動態規劃(揹包問題和最長公共子串)Python動態規劃
- 動態規劃(最長公共子序列LCS)動態規劃
- LCS 演算法:Javascript 最長公共子序列演算法JavaScript
- 最長公共子序列的程式碼實現