Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
Problem is, the description is talking about the sample standard deviation, while the kata expects population standard deviation, which are different things.
That will be great thanks very much for the offer! I've made it available to contributors.
Nice kata :) Random tests needed. If you would need some help I'm always glad to help out.
Looks good! :)
Thanks dcsmith for pointing that out for me! Hopefully it's better now.
The tests are using
Test.expect(bool, msg)
which simply expectsbool
to be truthy, which allows my solution to pass ;)You want to change it to
Test.assertEquals(actual, expected, msg)