看板 Python 關於我們 聯絡資訊
各位版上的高手你們好,目前我是剛接觸python的新手, 在刷leetcode 14. Longest Common Prefix 的時候,中途遇到了一個問題, 雖然距離解開答案還有一段路,現在遇到的錯誤如下,有嘗試在colab先自行編譯過, 但還是沒有太大的進展而卡關,主要是想找到原因,而非直接抄答案: Line 4: TypeError: 'type' object is not subscriptable class Solution: def longestCommonPrefix(self, strs: List[str]) -> str: temp = "" for i in list(range(len(str[0]))): if str[0][i] == str[1][i] and str[2][i] and i <= len(str[0])-1: temp += str[0][i] i = i+1 else: temp = "" return(temp) 謝謝各位。 =================題目如下================== Write a function to find the longest common prefix string amongst an array of strings. If there is no common prefix, return an empty string "". Example 1: Input: ["flower","flow","flight"] Output: "fl" Example 2: Input: ["dog","racecar","car"] Output: "" Explanation: There is no common prefix among the input strings. Note: All given inputs are in lowercase letters a-z ================題目終點=================== -- ※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 111.253.223.46 (臺灣) ※ 文章網址: https://www.ptt.cc/bbs/Python/M.1579443133.A.7C1.html
stucode: 參數是 strs 不是 str。 01/19 22:20
cuteSquirrel: 參數是strs不是str 01/20 00:19
sandy946727: 謝謝樓上兩位的解答 01/20 12:21
lemon651: 你這個解有很多問題,不用在for loop裡面改i,return不 01/21 14:21
lemon651: 用括號,這個方程式只能解長度是三的list 01/21 14:21
lemon651: range不需要用list包 01/21 14:23
sandy946727: 謝謝lemon651的回應。 01/22 14:12