[Codewars#7kyu] - Sum of two lowest positive integers

jihye·2022년 6월 4일
0

알고리즘

목록 보기
8/12

문제

가장 작은 두 가지를 골라 더하기


풀이

function sumTwoSmallestNumbers(numbers) {  
  const first = Math.min(...numbers);
  let notFirst = numbers.filter(v => v !== first); 
  const second = Math.min(...notFirst);

return first + second
}
profile
프론트엔드 개발자

0개의 댓글