RosettaCodeData/Task/Averages-Arithmetic-mean/PowerShell/averages-arithmetic-mean-2.ps1

8 lines
139 B
PowerShell
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
function mean ($x) {
if ($x.Count -eq 0) {
return 0
} else {
return ($x | Measure-Object -Average).Average
}
}