[프로그래머스] 코딩테스트 - 포켓몬 (Javascript)

아카시아·2021년 10월 12일
0

알고리즘

목록 보기
19/30

문제

출처 : https://programmers.co.kr/learn/courses/30/lessons/1845

풀이

function solution(nums) {
  const get = nums.length / 2;
  const noDuplication = [...new Set(nums)];
  return get < noDuplication.length ? get : noDuplication.length;
}
profile
낭만적인 개발자

0개의 댓글