Created
January 14, 2020 14:27
-
-
Save AppleCEO/a4b48c134f71a5a7226b9b5e98fb788a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func solution(_ arr:[Int]) -> Double { | |
return Double(arr.reduce(0) { (result, number) -> Int in | |
result + number | |
})/Double(arr.count) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment