728x90
반응형
import java.util.*;
class Solution {
public int[] solution(int[] numbers) {
HashSet<Integer> set = new HashSet<>();
for(int i=0; i<numbers.length-1; i++){
for(int j=1+i; j<numbers.length; j++){
set.add(numbers[i] + numbers[j]);
}
}
int[] answer = new int[set.size()];
answer = set.stream()
.mapToInt(i -> i)
.toArray();
Arrays.sort(answer);
return answer;
}
}
728x90
반응형
'알고리즘 문제풀이 > Programmers - 자바' 카테고리의 다른 글
프로그래머스 - 콜라 문제 (0) | 2023.03.31 |
---|---|
프로그래머스 - 크기가 작은 부분문자열 (0) | 2023.03.30 |
프로그래머스 - K번째수 (0) | 2023.03.29 |
프로그래머스 - 문자열 내 마음대로 정렬하기 (0) | 2023.03.29 |
프로그래머스 - [1차] 비밀지도 (1) | 2023.03.28 |