[프로그래머스] 코딩테스트 - 두 개 뽑아서 더하기 (Javascript)

아카시아·2021년 10월 7일
0

알고리즘

목록 보기
16/30

문제

출처 : https://programmers.co.kr/learn/courses/30/lessons/68644

풀이

function solution(numbers) {
  const arr = [];
  numbers.map((el, index) => {
    for (let i = 0; i < numbers.length; i++) {
      if (index === i) {
        return;
      } else {
        arr.push(el + numbers[i]);
      }
    }
  });

  const ans = [...new Set(arr)];

  return ans.sort((a, b) => a - b);
}
profile
낭만적인 개발자

0개의 댓글