Posts [알고리즘] 프로그래머스 - 평균 구하기
Post
Cancel

[알고리즘] 프로그래머스 - 평균 구하기


문제

평균 구하기


접근


코드

  • C++ 코드
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <vector>

using namespace std;

double solution(vector<int> arr) {
    double answer = 0;
    int n = arr.size();
    for (int i=0;i<n;i++){
        answer += arr[i];
    }
    answer /= n;
    return answer;
}
  • 파이썬 코드
1
2
3
4
5
6
def solution(arr):
    answer = 0
    for item in arr:
        answer += item
    answer /= len(arr)
    return answer


This post is licensed under CC BY 4.0 by the author.

[알고리즘] 프로그래머스 - 내적

[알고리즘] 프로그래머스 - 자릿수 더하기