Level 1 - 두 정수 사이의 합
by Dojin Kim
문제: 두 정수 사이의 합
두 정수 a, b가 주어졌을 때 a와 b 사이에 속한 모든 정수의 합을 리턴하는 함수, solution을 완성하세요. 예를 들어 a = 3, b = 5인 경우, 3 + 4 + 5 = 12이므로 12를 리턴합니다.
Java
My Solution
class Solution {
public long solution(int a, int b) {
long answer = 0;
int start=a<b? a:b;
int end=a>b? a:b;
for(int i=start; i<=end;i++)
answer+=i;
return answer;
}
}
Best solution
class Solution {
public long solution(int a, int b) {
return sumAtoB(Math.min(a, b), Math.max(b, a));
}
private long sumAtoB(long a, long b) {
return (b - a + 1) * (a + b) / 2;
}
}
Subscribe via RSS