14.最長公共前綴(python)

【題目】 【思路】 採用了最簡單的暴力解法。首先列出strs字符串組元素個數小於等於1的情況。然後是大於等於2的情況,循環判斷每2個元素之間是否相等。 【python】 class Solution(object): def longestCommonPrefix(self, strs): """ :type strs: List[str] :rtype: str """
相關文章
相關標籤/搜索