문제 : 폰켓몬 문제 링크는 여기. 쉽게 말해, N개 주어지는 폰켓몬 중에서 최대한 다양한 폰켓몬 종류로 골라서 가져가되, 최대 N/2개 골라라. 풀이 import java.util.HashSet; class Solution { public int solution(int[] nums) { HashSet numSet = new HashSet(); for (int n : nums) numSet.add(n); return (nums.length / 2)