728x90
반응형
import java.util.Arrays;
class Solution {
public int solution(int[] numbers) {
Arrays.sort(numbers);
return numbers[numbers.length-1] * numbers[numbers.length-2];
}
}
728x90
반응형
'알고리즘 문제풀이 > Programmers - 자바' 카테고리의 다른 글
프로그래머스 - 삼각형의 완성조건 (1) (0) | 2023.02.22 |
---|---|
프로그래머스 - 문자 반복 출력하기 (0) | 2023.02.22 |
프로그래머스 - 특정 문자 제거하기 (0) | 2023.02.22 |
프로그래머스 - 피자 나눠 먹기 (3) (0) | 2023.02.22 |
프로그래머스 - 옷가게 할인 받기 (0) | 2023.02.22 |