본문 바로가기

코딩테스트/프로그래머스

[Level 1][C++] 평균 구하기

#include <string>
#include <vector>
#include <numeric>

using namespace std;

double solution(vector<int> arr) {
    double answer = accumulate(arr.begin(), arr.end(), 0);
    return answer/arr.size();
}