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

Jmnote (토론 | 기여)님의 2023년 11월 11일 (토) 15:32 판

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