본문 바로가기
알고리즘

[프로그래머스] 폰켓몬 JS

by limew 2023. 5. 18.

https://school.programmers.co.kr/learn/courses/30/lessons/1845?language=javascript 

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

 

떠오르는 생각

  • nums 중복제거 => Set 사용
  • nums/2 와 중복제거.length 비교

포인트

  • new Set(arr) 하면 set 반환되고
  • set을 array로 변환:  [...set] 

 

Solution

function solution(nums) {
    var answer = 0;
    const maxSelection = nums.length / 2;
    const arr = [...new Set(nums)];
    answer = maxSelection < arr.length ? maxSelection : arr.length;
    return answer;
}