프로그래머스 120811 중앙값 구하기

1 개요[ | ]

프로그래머스 120811 중앙값 구하기

2 C++[ | ]

#include <string>
#include <vector>
#include <algorithm>

using namespace std;

int solution(vector<int> array) {
    sort(array.begin(), array.end());
    return array[array.size()/2];
}

3 같이 보기[ | ]