Set
n/2
function solution(nums) { const arr = [...new Set(nums)]; return Math.min(nums.length / 2, arr.length); }
Set에 size() 메소드가 있기 때문에 만든 Set을 다시 배열로 변환할 필요가 없었음
size()