본문 바로가기
JavaScript

[프로그래머스 Lv.1] 폰켓몬

by 어느새벽 2024. 11. 22.
function solution(nums) {
    let newArr = Array.from(new Set(nums));
    return newArr.length === nums.length / 2 || newArr.length < nums.length / 2 ? newArr.length : nums.length / 2
}