RosettaCodeData/Task/Averages-Arithmetic-mean/PowerShell/averages-arithmetic-mean-2.psh
2023-07-01 13:44:08 -04:00

7 lines
139 B
Text

function mean ($x) {
if ($x.Count -eq 0) {
return 0
} else {
return ($x | Measure-Object -Average).Average
}
}