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
const GetSum = (a, b) => {
let min = Math.min(a, b),
max = Math.max(a, b);
return (max - min + 1) * (min + max) / 2;
}
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