문제 :
정수 배열 numbers가 매개변수로 주어집니다. numbers의 원소 중 두 개를 곱해 만들 수 있는 최댓값을 return하도록 solution 함수를 완성해주세요.
풀이:
class Solution {
public int solution(int[] numbers) {
int answer = 0;
int max=0;
for(int i=0; i<numbers.length; i++){
int num = numbers[i];
int tempint = i+1;
for(int j=tempint; j<numbers.length; j++){
int multiple = numbers[j] * num;
if(max < multiple){
max = multiple;
}
}
}
answer = max;
return answer;
}
}
'알골 이모저모' 카테고리의 다른 글
프로그래머스 - 배열 두 배 만들기 (0) | 2023.10.05 |
---|---|
프로그래머스 - 편지 (0) | 2023.10.05 |
프로그래머스 - 점의 위치 구하기 (0) | 2023.10.04 |
프로그래머스 - 짝수 홀수 개수 (0) | 2023.10.04 |
프로그래머스 - 양꼬치 (0) | 2023.10.04 |