leetcode刷題(Python)

num1.兩數之和 本題難度不大,可是O( n 2 n^2 n2)的複雜度算超時… 個人解法:html class Solution: def twoSum(self, nums, target): length = len(nums) for i in range(length): for j in range(i+1,lengt
相關文章
相關標籤/搜索