Given two integers, which can be positive and negative, find the sum of all the numbers between including them too and return it. If both numbers are equal return a or b. Note! a and b are not ordered!
Example:
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
'Computer science > 알고리즘' 카테고리의 다른 글
[자바스크립트로 구현한 알고리즘] Stringy Strings (0) | 2016.09.17 |
---|---|
[자바스크립트로 구현한 알고리즘] Disemvowel Trolls (0) | 2016.09.17 |
[자바스크립트로 구현한 알고리즘] Return Negative (0) | 2016.09.17 |
[자바스크립트로 구현한 알고리즘] Convert number to reversed array of digits (0) | 2016.09.14 |
[자바스크립트로 구현한 알고리즘] Sum of positive (0) | 2016.09.14 |
이 포스팅은 쿠팡파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다.