Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Algorithm
- 자료형
- JS
- 변수
- sorting
- 백준
- 알고리즘
- 자료구조
- github
- CSS
- 파이썬
- hash table
- SasS
- scss
- string
- leetcode
- 프로그래머스
- 코딩테스트
- computed
- JavaSceipt
- array
- 컴포넌트
- dynamic programming
- Python
- java
- vue.js
- JavaScript
- math
- greedy
- HTML
Archives
- Today
- Total
Posis
[프로그래머스] 최댓값 만들기 (2) 본문
문제 링크
https://school.programmers.co.kr/learn/courses/30/lessons/120862
문제 설명
정수 배열 numbers가 매개변수로 주어집니다. numbers의 원소 중 두 개를 곱해 만들 수 있는 최댓값을 return하도록 solution 함수를 완성해주세요.
제한사항
- -10,000 ≤ numbers의 원소 ≤ 10,000
- 2 ≤ numbers 의 길이 ≤ 100
입출력 예
numbers | result |
[1, 2, -3, 4, -5] | 15 |
[0, -31, 24, 10, 1, 9] | 240 |
[10, 20, 30, 5, 5, 20, 5] | 600 |
입출력 예 설명
입출력 예 #1
- 두 수의 곱중 최댓값은 -3 * -5 = 15 입니다.
입출력 예 #2
- 두 수의 곱중 최댓값은 10 * 24 = 240 입니다.
입출력 예 #3
- 두 수의 곱중 최댓값은 20 * 30 = 600 입니다.
나의 풀이
Java
import java.util.Arrays;
class Solution {
public int solution(int[] numbers) {
Arrays.sort(numbers);
int num1 = numbers[0] * numbers[1];
int num2 = numbers[numbers.length-1] * numbers[numbers.length-2];
if(num1 > num2){
return num1;
} else {
return num2;
}
}
}
JavaScript
function solution(numbers) {
let answer = 0;
numbers.sort((a, b) => a-b);
let num1 = numbers[0] * numbers[1];
let num2 = numbers[numbers.length - 2] * numbers[numbers.length - 1];
answer = num1 > num2 ? num1 : num2;
return answer;
}
728x90
'알고리즘 > 프로그래머스' 카테고리의 다른 글
[프로그래머스] 문자열 정렬하기 (2) (0) | 2022.12.05 |
---|---|
[프로그래머스] 숫자 찾기 (0) | 2022.12.05 |
[프로그래머스] 인덱스 바꾸기 (0) | 2022.12.05 |
[프로그래머스] 외계행성의 나이 (0) | 2022.12.05 |
[프로그래머스] 피자 나눠 먹기 (2) (0) | 2022.12.05 |