링크 :
코딩테스트 연습 - 두 개 뽑아서 더하기 | 프로그래머스 (programmers.co.kr)
function solution(numbers) {
// 부서수
const answer = [];
//numbers 순회
for(let i=0; i<numbers.length-1; i++){
for(let j=i; j<numbers.length; j++){
if(i != j){
let sum = numbers[i]+numbers[j];
if(answer.find(o => o == sum) !== undefined) continue;
answer.push(sum);
}
}
}
answer.sort((a, b) => a-b);
return answer;
}
'교육 > 코테' 카테고리의 다른 글
[프로그래머스]JS 최소직사각 (0) | 2022.05.23 |
---|---|
[프로그래머스]JS 2016년 (0) | 2022.05.23 |
[프로그래머스]JS 예산 (0) | 2022.05.23 |
[프로그래머스]JS 3진법 뒤집기 (0) | 2022.05.23 |
[프로그래머스]JS 약수의 개수와 덧셈 (0) | 2022.05.23 |