Hi, There!
안녕하세요, 바오밥입니다.
목차
- 문제
- 풀이
문제
문제 내용
https://school.programmers.co.kr/learn/courses/30/lessons/120868
풀이
나의 풀이
class Solution {
public int solution(int[] sides) {
int max = sides[0] > sides[1] ? sides[0] : sides[1];
int min = sides[0] > sides[1] ? sides[1] : sides[0];
int answer = 0;
for(int i=max-min+1; i<=max; i++) answer++;
for(int i=max+1; i<max+min; i++) answer++;
return answer;
}
}
'Dev > PS' 카테고리의 다른 글
[프로그래머스-코딩테스트 입문] 숨어있는 숫자의 덧셈 (2) (0) | 2023.08.22 |
---|---|
[프로그래머스-코딩테스트 입문] 외계어 사전 (0) | 2023.08.22 |
[프로그래머스-코딩테스트 입문] 안전지대 (0) | 2023.08.22 |
[프로그래머스-코딩테스트 입문] 저주의 숫자 3 (0) | 2023.08.22 |
[프로그래머스-연습문제] 삼총사 (0) | 2023.08.18 |