코트카타28) 없는 숫자 더하기나의 풀이import java.util.*;class Solution { public int solution(int[] numbers) { int answer = -1; Set allNumbers = new HashSet(); for (int i = 0; i 0~9까지의 값이 있는 Set을 생성해서기존 numbers 배열에 있는 값을 제거했다.그리고 스트림을 이용해서 Set의 값을 더했다. .mapToInt(Integer::intValue)Stream를 IntStream으로 변환Stream는 일반 객체 Stream이지만, IntStream은 기본형 int 값을 위한 스트림으로 더 효율적으로 처리가능각 Integer 객체를 기본형 i..