알고리즘 56 - Sum of two lowest positive integers

박진현·2021년 7월 21일
0

Q.

Description:
Create a function that returns the sum of the two lowest positive numbers given an array of minimum 4 positive integers. No floats or non-positive integers will be passed.

For example, when an array is passed like [19, 5, 42, 2, 77], the output should be 7.

[10, 343445353, 3453445, 3453545353453] should return 3453455.

A)

function sumTwoSmallestNumbers(numbers) {  
  //Code here
  numbers.sort((a,b) => a-b);
  let [a,b,...rest] = numbers
  return  a+b
}
profile
👨🏻‍💻 호기심이 많고 에러를 좋아하는 프론트엔드 개발자 박진현 입니다.

0개의 댓글