프로그래머스 120847 최댓값 만들기(1)

Jmnote (토론 | 기여)님의 2023년 11월 11일 (토) 12:59 판 (새 문서: ==개요== {{프로그래머스|레벨=0|페이지=9}} ==C++== <syntaxhighlight lang='cpp'> #include <string> #include <vector> using namespace std; int solution(vector<int> number...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요

프로그래머스 120847 최댓값 만들기(1)


2 C++

#include <string>
#include <vector>

using namespace std;

int solution(vector<int> numbers) {
    int answer = 0;
    int max1 = 0, max2 = 0;
    for (int num: numbers){
        if(num >= max1){
            max2 = max1;
            max1 = num;
        } else if(num > max2) {
            max2 = num;
        }
    }
    return max1 * max2;
}
#include <string>
#include <vector>
#include <algorithm>
using namespace std;

int solution(vector<int> numbers) {
    sort(numbers.begin(), numbers.end(), greater<int>());
    return numbers[0] * numbers[1];
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}