LeetCode - Intersection of Two Arrays II(Python)
Problem
문제 요약 : 두개의 배열 안에서 같은 부분 찾기.
Site
Solution
1) Use Dictionary
class Solution:
def intersect(self, nums1: List[int], nums2: List[int]) -> List[int]:
tmp = {}
answer = []
for i in nums1:
if i not in tmp:
tmp[i] = 1
else:
tmp[i] += 1
for i in nums2:
if i in tmp:
if tmp[i] > 1:
tmp[i] -= 1
else:
del tmp[i]
answer.append(i)
return answer
2) Use Counter
from collections import Counter
class Solution:
def intersect(self, nums1: List[int], nums2: List[int]) -> List[int]:
return (Counter(nums2) & Counter(nums1)).elements()
Author And Source
이 문제에 관하여(LeetCode - Intersection of Two Arrays II(Python)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@jjanmini/LeetCode-Intersection-of-Two-Arrays-IIPython저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)