"프로그래머스 120847 최댓값 만들기(1)"의 두 판 사이의 차이

(새 문서: ==개요== {{프로그래머스|레벨=0|페이지=9}} ==C++== <syntaxhighlight lang='cpp'> #include <string> #include <vector> using namespace std; int solution(vector<int> number...)
 
1번째 줄: 1번째 줄:
==개요==
==개요==
{{프로그래머스|레벨=0|페이지=9}}
{{프로그래머스|레벨=0|페이지=9}}
* [[프로그래머스 입문 캘린더]]
[[분류: 프로그래머스 코딩테스트 입문]]


==C++==
==C++==

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