codewars: Beginner Series #3 Sum of Numbers

Jieun·2021년 1월 8일
0

js알고리즘

목록 보기
1/6

✅ 문제

Given two integers a and b, which can be positive or negative, find the sum of all the integers between including them too and return it. If the two numbers are equal return a or b.

Note: a and b are not ordered!

해석 : 정수 a와 b를 받아 두 수를 포함한 두 숫자 사이의 합을 구하라. 두 수가 같다면 정수 a 혹은 b를 리턴한다. a와 b는 마이너스 값을 가질 수 있고 a의 값이 b보다 클 수 있다.

✅ 예시

GetSum(1, 0) == 1   // 1 + 0 = 1
GetSum(1, 2) == 3   // 1 + 2 = 3
GetSum(0, 1) == 1   // 0 + 1 = 1
GetSum(1, 1) == 1   // 1 Since both are same
GetSum(-1, 0) == -1 // -1 + 0 = -1
GetSum(-1, 2) == 2  // -1 + 0 + 1 + 2 = 2

✅ 내가 만든 답

    function getSum(a, b, c=0){
        if (a <= b){
            for(i=a; i<=b; i++){
                c += i;
            } return c;
        } else if(a > b){
            for(i=b; i<=a; i++){
                c += i;
            } return c;
        }
    }

    getSum(1,5); //15
    getSum(4,1); //10
    getSum(2,2); //2
  • 처음에 a와 b의 값이 같은 경우를 else if를 이용해서 만들었으나 첫번째 if문에 포함시켜도 된다는 걸 바로 깨닫고 코드를 없앴다.

✅ 다른 사람 답

const GetSum = (a, b) => {
  let min = Math.min(a, b),
      max = Math.max(a, b);
  return (max - min + 1) * (min + max) / 2;
}
  • 매개변수를 받아올 때 Math.min, Math.max API를 알았더라도 저 사람이 쓴 리턴값의 공식을 몰라서 쓰지 못했을 것 같다.
console.log(Math.min(2, 3, 1));
// expected output: 1

console.log(Math.min(-2, -3, -1));
// expected output: -3

const array1 = [2, 3, 1];

console.log(Math.min(...array1));
// expected output: 1
  • MDN에 찾아보니 위처럼 Math.min은 가장 작은 값을 리턴하고 매개변수가 숫자가 아니라면 NaN 출력. Math.max는 반대.

0개의 댓글

관련 채용 정보