import java.util.*;
class Solution {
public int solution(int[] numbers) {
Arrays.sort(numbers);
return numbers[numbers.length-1]*numbers[numbers.length-2];
}
}
'Coding Test > 프로그래머스' 카테고리의 다른 글
[프로그래머스/자바] 아이스 아메리카노 (0) | 2023.04.14 |
---|---|
[프로그래머스/자바] 특정 문자 제거하기 (0) | 2023.04.12 |
[프로그래머스/자바] 중앙값 구하기 (0) | 2023.04.12 |
[프로그래머스/자바] 배열 자르기 (0) | 2023.04.10 |
[프로그래머스/자바] 머쓱이보다 키 큰 사람 (0) | 2023.04.09 |