import java.util.Arrays;
class Solution {
public int solution(int[] sides) {
Arrays.sort(sides);
if(sides[2] < sides[0] + sides[1])
return 1;
else
return 2;
}
}
Arrays.sort(sides) : sides int 배열의 원소들을 오름차순 정렬
'JAVA STUDY > 프로그래머스' 카테고리의 다른 글
프로그래머스 특정 문자 제거하기 문제 (0) | 2023.12.11 |
---|---|
프로그래머스 모음 제거 문제 (0) | 2023.12.11 |
프로그래머스 문자열안에 문자열 문제 (0) | 2023.12.11 |
프로그래머스 편지 문제 (0) | 2023.12.11 |
프로그래머스 양꼬치 문제 (4) | 2023.11.18 |