1. 程式人生 > >python刷leetcode

python刷leetcode

第一題:給定一個整數陣列和一個目標值,找出陣列中和為目標值的兩個數。

示例:

給定 nums = [2, 7, 11, 15], target = 9

因為 nums[0] + nums[1] = 2 + 7 = 9
所以返回 [0, 1]

class Solution(object):
    def twoSum(self, nums, target):
        """
        :type nums: List[int]
        :type target: int
        :rtype: List[int]
        """
#result = [] for i in range(len(nums)): for j in range(i+1,len(nums)): sum = nums[i] + nums[j] if sum == target: #result.append(i) #result.append(j) return (i,j)

初級水平程式碼,執行4000ms