Programers : vector 조회하기(accumulate)

김정욱·2021년 1월 19일
0

Algorithm - 문제

목록 보기
51/249
post-custom-banner

stl 자료구조의 합 구하기

  • <numeric> 헤더 안에 있는 accumulate()를 이용해 간단히 구할 수 있다
#include <string>
#include <vector>
#include <numeric> // 헤더 선언
using namespace std;

double solution(vector<int> arr) {
    /* 3번째 인자는 sum의 초기값으로 사용 */
    double answer = accumulate(arr.begin(), arr.end(), 0);
    return answer/(double)arr.size();
}
profile
Developer & PhotoGrapher
post-custom-banner

0개의 댓글