문제
https://school.programmers.co.kr/learn/courses/30/lessons/120847
설계
파이썬
def solution(numbers):
numbers.sort()
return numbers[-1] * numbers[-2]
자바스크립트
function solution(numbers) {
const max1 = Math.max(...numbers)
const index1 = numbers.indexOf(max1)
numbers[index1] = 0
const max2 = Math.max(...numbers)
return max1 * max2;
}
'PS (Problem Solving) > Programmers' 카테고리의 다른 글
[프로그래머스] 문자열 뒤집기 - 파이썬, 자바스크립트 (0) | 2023.01.21 |
---|---|
[프로그래머스] 삼각형의 완성조건 (1) - 파이썬 (0) | 2023.01.21 |
[프로그래머스] 문자 반복 출력하기 - 파이썬, 자바스크립트 (0) | 2023.01.21 |
[프로그래머스] 짝수는 싫어요 - 파이썬, 자바스크립트 (0) | 2023.01.21 |
[프로그래머스] 편지 - 파이썬, 자바스크립트 (0) | 2023.01.21 |