class Solution {
public int solution(int[] sides) {
int A = Math.abs(sides[0] - sides[1]) + 1;
int B = Math.abs(sides[0] + sides[1]) - 1;
return A >= B ? A - B + 1 : B - A + 1;
}
}
'Playground > 자바문제집' 카테고리의 다른 글
[프로그래머스] 유한소수 판별하기 (0) | 2023.02.05 |
---|---|
[프로그래머스] 영어가 싫어요 (0) | 2023.02.05 |
[프로그래머스] 문자열 계산하기 (0) | 2023.02.05 |
[프로그래머스] 치킨 쿠폰 (0) | 2023.02.05 |
[프로그래머스] 로그인 성공? (0) | 2023.02.05 |