❤leetcode,python2❤編寫一個函數來查找字符串數組中的最長公共前綴。 若是不存在公共前綴,返回空字符串 「」。

class Solution(object): def longestCommonPrefix(self, strs): """ :type strs: List[str] :rtype: str """ rstr = '' if strs == []: return rstr old = strs[
相關文章
相關標籤/搜索