프로그래머스 두 개 뽑아서 더하기
내가 푼 풀이
import java.util.*;
class Solution {
public int[] solution(int[] numbers) {
Arrays.sort(numbers);
ArrayList<Integer> list = new ArrayList<>();
for(int i=0; i<numbers.length-1; i++){
for(int j=i+1; j<numbers.length; j++){
int sum = numbers[i] + numbers[j];
if(!list.contains(sum)) list.add(sum);
}
}
return list.stream().sorted().mapToInt(Integer::intValue).toArray();
}
}
'PS > programmers' 카테고리의 다른 글
[프로그래머스] 기능개발 (1) | 2022.06.27 |
---|---|
프로그래머스 타겟 넘버 (0) | 2022.06.27 |
프로그래머스 실패율 (0) | 2022.06.27 |
프로그래머스 1차 다트 게임 (0) | 2022.06.27 |
프로그래머스 카카오 프렌즈 컬러링 북 (0) | 2022.06.27 |