LeetCode刷题记录贴(一)
1.两数之和#哈希表class Solution(object): def twoSum(self, nums, target): """ :type nums: List[int] :type target: int :rtype: List[int] """ other = dict() for i in range(len(nu