RosettaCodeData/Task/Averages-Arithmetic-mean/PowerShell/averages-arithmetic-mean-2.ps1
2026-04-30 12:34:36 -04:00

7 lines
139 B
PowerShell

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