728x90
어제 너무 어려운거 풀어서 오늘은 쉬운거 풀어봄
class Solution {
public long solution(int a, int b) {
long answer = 0;
for(int i = Math.min(a,b);i<= Math.max(a,b);i++){
answer+=i;
}
return answer;
}
}
728x90
'with my rubber duck > codingTest' 카테고리의 다른 글
[프로그래머스] 소수만들기 풀어보기 (0) | 2022.06.22 |
---|---|
[프로그래머스]직사각형 별찍기(StringBuilder를 알게되다) (0) | 2022.06.13 |
[프로그래머스] 실패율 풀어보기^^~! (0) | 2022.06.09 |
[프로그래머스] 완주하지 못한 선수 (0) | 2022.06.06 |
[프로그래머스] K번째변수 풀어보기 (0) | 2022.06.03 |
댓글