Skip to content

Commit e4270b7

Browse files
added daily challenge
1 parent f3b9226 commit e4270b7

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

349. Intersection of Two Arrays.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
class Solution:
2+
def intersection(self, nums1: List[int], nums2: List[int]) -> List[int]:
3+
return set(nums1) & set(nums2)
4+

0 commit comments

Comments
 (0)