:type nums1: List[int] :type nums2: List[int] :rtype: List[int]
(self, nums1, nums2)
| 31 | """ |
| 32 | class Solution(object): |
| 33 | def intersection(self, nums1, nums2): |
| 34 | """ |
| 35 | :type nums1: List[int] |
| 36 | :type nums2: List[int] |
| 37 | :rtype: List[int] |
| 38 | """ |
| 39 | |
| 40 | return list(set(nums1) & set(nums2)) |
nothing calls this directly
no outgoing calls
no test coverage detected