Leetcode

349. Intersection of Two Arrays

2016-08-02  本文已影响7人  oo上海

349. Intersection of Two Arrays

题目:
https://leetcode.com/problems/intersection-of-two-arrays/

难度:

Easy

Python一句话作弊

class Solution(object):
    def intersection(self, nums1, nums2):
        """
        :type nums1: List[int]
        :type nums2: List[int]
        :rtype: List[int]
        """
        return list(set(nums1).intersection(nums2))
上一篇下一篇

猜你喜欢

热点阅读