-
Notifications
You must be signed in to change notification settings - Fork 0
Closed
Description
💬 문제
[코딩테스트 연습 - 평균 구하기](https://school.programmers.co.kr/learn/courses/30/lessons/12944)
💬 풀이
func solution(_ arr:[Int]) -> Double {
return Double(arr.reduce(0, +)) / Double(arr.count)
}