Contains Duplicate
문제 링크https://leetcode.com/problems/contains-duplicate/문제 설명정수 배열 번호가 주어지면 배열에 두 번 이상 표시되는 값이 있으면 참으로 반환하고, 모든 요소가 구분되는 경우 거짓으로 반환합니다.Example 1: Input: nums = [1,2,3,1] Output: true Explanation: The element 1 occurs at the indices 0 and 3.Example 2: Input: nums = [1,2,3,4] Output: false Explanation: All elements are distinct.Example 3: Input: nums = [1,1,1,3,3,4,3,2,4,2] Output: true풀이 ..