728x90
반응형
https://programmers.co.kr/learn/courses/30/lessons/12944
using System.Linq;
public class Solution {
public double solution(int[] arr) {
return arr.Average();
}
}
반응형
'프로그래머스_C# > Level_1' 카테고리의 다른 글
[프로그래머스 C#] 최대공약수와 최소공배수 (0) | 2021.07.10 |
---|---|
[프로그래머스 C#] 콜라츠 추측 (0) | 2021.07.03 |
[프로그래머스 C#] 하샤드 수 (0) | 2021.06.18 |
[프로그래머스 C#] 핸드폰 번호 가리기 (0) | 2021.06.04 |
[프로그래머스 C#] x만큼 간격이 있는 n개의 숫자 (0) | 2021.05.29 |