반응형
https://programmers.co.kr/learn/courses/30/lessons/12944
class Solution {
public double solution(int[] arr) {
double sum = 0;
double avg = 0;
for(int i=0; i<arr.length; i++){
sum += arr[i];
}
avg = sum / (double)arr.length;
return avg;
}
}
반응형
'코딩테스트 > 프로그래머스 1단계' 카테고리의 다른 글
프로그래머스 1단계 - 직사각형 별찍기 (0) | 2021.08.19 |
---|---|
프로그래머스 1단계 - 행렬의 덧셈 (0) | 2021.08.19 |
프로그래머스 1단계 - x만큼 간격이 있는 n개의 숫자 (0) | 2021.08.19 |
프로그래머스 1단계 - 하샤드 수 (0) | 2021.08.19 |
프로그래머스 1단계 - 핸드폰 번호 가리기 (0) | 2021.08.19 |