리트코드 349번 Intersection of Two lists (python)

Kim Yongbin·2023년 10월 5일
0

코딩테스트

목록 보기
112/162

Problem

LeetCode - The World's Leading Online Programming Learning Platform

Solution

내 풀이

from typing import List

class Solution:
    def intersection(self, nums1: List[int], nums2: List[int]) -> List[int]:
        set_1, set_2 = set(nums1), set(nums2)
        return list(set_1.intersection(set_2))

Reference

파이썬 알고리즘 인터뷰 67번

profile
반박 시 여러분의 말이 맞습니다.

0개의 댓글