3.21 LeetCode 使用dic解決問題

1. Two Sum 從無序數組中,找到兩個數求和爲target,返回下標。 字典,數值:索引 避免重複數字被覆蓋,先從字典裏查找target - nums[i],如果找到則返回,沒找到就加入字典。 def twoSum(self, nums: List[int], target: int) -> List[int]: dic = {} for i in range
相關文章
相關標籤/搜索