LeetCode - 961. N-Repeated Element in Size 2N Array

henu·2023년 12월 13일
0

LeetCode

목록 보기
156/186

Solution

var repeatedNTimes = function(nums) {
    const hash = {}

    for(num of nums) {
        if(hash[num]) {
            return num
        } else {
            hash[num] = 1
        }
    }
};

Explanation

이 문제는 여러 번 출현하는 수를 추출하는 문제이다.
Hash Table을 이용하면 쉽게 해결할 수 있다.

0개의 댓글