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

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];
}