This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Given two integers a and b, which can be positive or negative, find the sum of all the numbers between including them too and return it. If the two numbers are equal return a or b. | |
| Note: a and b are not ordered! | |
| Examples | |
| 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 |
NewerOlder