Updated examples

This commit is contained in:
Angelos Chalaris
2017-12-27 16:06:16 +02:00
committed by Agamemnon Zorbas
parent 99a07d22dd
commit 97c250bcfb
101 changed files with 155 additions and 140 deletions

View File

@ -17,6 +17,6 @@ const standardDeviation = (arr, usePopulation = false) => {
```
```js
standardDeviation([10,2,38,23,38,23,21]) -> 13.284434142114991 (sample)
standardDeviation([10,2,38,23,38,23,21], true) -> 12.29899614287479 (population)
standardDeviation([10,2,38,23,38,23,21]) // 13.284434142114991 (sample)
standardDeviation([10,2,38,23,38,23,21], true) // 12.29899614287479 (population)
```