본문 바로가기

Programmers/Level1

두 정수 사이의 합

1
2
3
4
5
6
7
8
9
10
11
12
class Solution {
    public long solution(int a, int b) {
        long answer = 0;
        if(a < b)
            for(int i = a; i <= b; i++)
                answer += i;
        else
            for(int i = a; i >= b; i--)
                answer += i;
        return answer;
    }
}
cs

등차수열의 합으로 푼 사람이 인상적이었다.

'Programmers > Level1' 카테고리의 다른 글

시저 암호  (0) 2021.07.06
문자열 내 마음대로 정렬하기  (0) 2021.07.06
음양 더하기  (0) 2021.07.06
내적  (0) 2021.07.06
서울에서 김서방 찾기  (0) 2021.07.05