728x90
반응형
https://programmers.co.kr/learn/courses/30/lessons/12912
public class Solution {
public long solution(int a, int b) {
long answer = 0;
(int small, int big) = a >= b ? (b, a) : (a, b);
for (int i = small; i <= big; i++)
answer += i;
return answer;
}
}
변수를 요딴식으로도 선언 가능
반응형
'프로그래머스_C# > Level_1' 카테고리의 다른 글
[프로그래머스 C#] 2016년 (0) | 2021.09.03 |
---|---|
[프로그래머스 C#] 가운데 글자 가져오기 (0) | 2021.09.02 |
[프로그래머스 C#] 문자열 내 마음대로 정렬하기 (0) | 2021.09.01 |
[프로그래머스 C#] 나누어 떨어지는 숫자 배열 (0) | 2021.09.01 |
[프로그래머스 C#] 문자열 다루기 기본 (0) | 2021.08.31 |