leetcode刷題之349 兩個陣列的交集

2021-09-25 23:29:49 字數 1152 閱讀 1501

示例 1:

輸入: nums1 = [1,2,2,1], nums2 = [2,2]

輸出: [2]

示例 2:

輸入: nums1 = [4,9,5], nums2 = [9,4,9,8,4]

輸出: [9,4]

class

solution

(object):

defintersection

(self, nums1, nums2)

:"""

:type nums1: list[int]

:type nums2: list[int]

:rtype: list[int]

"""c =

for i in

range

(len

(nums1)):

if nums1[i]

in nums2:

)return

list

(set

(c))

# 執行用時 : 68 ms, 在intersection of two arrays的python提交中擊敗了37.18% 的使用者

# 記憶體消耗 : 11.8 mb, 在intersection of two arrays的python提交中擊敗了33.95% 的使用者

class

solution

(object):

defintersection

(self, nums1, nums2)

:"""

:type nums1: list[int]

:type nums2: list[int]

:rtype: list[int]

"""return

list

(set

(nums1)

&set

(nums2)

)# 執行用時 : 36 ms, 在intersection of two arrays的python提交中擊敗了98.61% 的使用者

# 記憶體消耗 : 11.8 mb, 在intersection of two arrays的python提交中擊敗了32.72% 的使用者

LeetCode刷題之求兩數之和

題目 給定乙個整數陣列和乙個目標值,找出陣列中和為目標值的兩個數。你可以假設每個輸入只對應一種答案,且同樣的元素不能被重複利用。示例 給定 nums 2,7,11,15 target 9 因為 nums 0 nums 1 2 7 9 所以返回 0,1 解決思路 1.遍歷兩次列表,然後判斷遍歷得到的數...

LeetCode刷題日記之兩數相加

給出兩個非空的鍊錶用來表示兩個非負的整數。其中,它們各自的位數是按照逆序的方式儲存的,並且它們的每個節點只能儲存一位數字。如果,我們將這兩個數相加起來,則會返回乙個新的鍊錶來表示它們的和。您可以假設除了數字 0 之外,這兩個數都不會以 0 開頭。示例 輸入 2 4 3 5 6 4 輸出 7 0 8原...

leetCode刷題 兩數之和

兩數之和 給定乙個整數陣列 nums 和乙個目標值 target,請你在該陣列中找出和為目標值的那 兩個 整數,並返回他們的陣列下標。你可以假設每種輸入只會對應乙個答案。但是,你不能重複利用這個陣列中同樣的元素。示例 給定 nums 2,7,11,15 target 9 因為 nums 0 nums...