繁体   English   中英

如何解决leetcode中超过时间限制的错误

[英]How to tackle time limit exceeded error in leetcode

我已经在 LeetCode 中编写了最长公共前缀的代码,但它被返回“超出时间限制”。

没有具体的错误消息,所以我不知道如何修复我的代码以通过测试用例。

class Solution:
    def longestCommonPrefix(self, strs: List[str]) -> str:

        #find the number of shortest characters
        shortest_num = 0
        nums = [0] * len(strs)
        for i in range(len(strs)):
            nums[i] = len(strs[i])
            shortest_num = min(nums)

        l1 = strs[0]
        l2 = strs[1]
        l3 = strs[2]


        for j in range(shortest_num):
            tmp = ""
            while l1[j] == l2[j] and l2[j] == l3[j]:
                tmp += l1[j]
            candidate.append(tmp)

        print(max(candidate))

错误信息

Time Limit Exceeded

当您没有以 Good Time 复杂度编写代码时,就会出现此错误。 当 Leetcode 系统以更大的输入运行你的代码时,你的代码没有在最佳时间运行。 可能有一些已知的算法可以解决您的问题陈述。 在 inte.net 上搜索问题陈述,您会找到一些解决此问题的算法。

始终使用列表推导会更快。 例如,要获取字符串长度列表,请使用以下命令

lens = [len(x) for x in strs]
min_len = min(lens)

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM