▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/set-mismatch/ Set Mismatch - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 1부터 n까지 순서대로 증가하는 정수를 *모두 담은 집합이 배열로 주어진다. (n부터 1까지 감소하는 리스트 포함) 오류로 중복된 숫자와, 원래 숫자를 리스트로 반환하는 문제. class Solution: def findErrorNums(self, nums: List[int]) ->..