您的位置:首页 > 编程语言 > Python开发

[python][leetcode]Intersection of Two Arrays II

2016-05-30 12:51 597 查看
Given two arrays, write a function to compute their intersection.

Example:

Given nums1 = [1, 2, 2, 1], nums2 = [2, 2], return [2, 2].

Note:

Each element in the result should appear as many times as it shows in both arrays.

The result can be in any order.

Follow up:

What if the given array is already sorted? How would you optimize your algorithm?

What if nums1’s size is small compared to num2’s size? Which algorithm is better?

What if elements of nums2 are stored on disk, and the memory is limited such that you cannot load all elements into the memory at once?

Subscribe to see which companies asked this question

class Solution(object):
def intersect(self, nums1, nums2):
"""
:type nums1: List[int]
:type nums2: List[int]
:rtype: List[int]
"""
res=[];diction={}
for num1 in nums1:
if not diction.has_key(num1):
diction[num1]=1
else:
diction[num1]+=1
for num2 in nums2:
if diction.has_key(num2) and diction[num2]>=1:
diction[num2]-=1
res.append(num2)
return res
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  leetcode python