[프로그래머스][Level1][(탐욕법)체육복]
코드(HashSet 이용) public int solution(int n, int[] lost, int[] reserve) { // 총인원 - 체육복 분실 인원수 int answer = n-lost.length; // 카운트 변수 선언 int cnt = 0; HashSet hs = new HashSet(); for(int i : reserve) { hs.add(i); } // 여분체육복 가져온 사람이 분실했을 경우 for(int i=0; i