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.
Hi! have the same problem. Got this on calculation First\Last Decile: i got First Decile = -74.4682544, should equal = -74.4682543999999, and Last = 587.1, should equal = 587.1000000000001.
Maybe i dont understand but difference between mine and expected value less then 10**-10:
do you submit this kata?
There's no way to look at the tests when you hit attempt, unless you solve it :D (then you can see by clicking 'Show Kata Test Cases' below satisfaction rating)
With other languages like JS, it will display your logs regardless if your code times out or not, but not with python runner :/
But to be clear, you shouldn't need to use any external stuff. All you need is to scroll through the logs that codewars runner displays, and find what you need. ( ideally :P ) Best of luck, and if it doesn't work, let us know, we'll find a way to help.
Hmm... with python that can be tricky. The goal is to print just enough stuff to fill the buffer in 12s (easy if there's infinite loop), otherwise it will only display timeout message. You could print some distinct message and then print the input, so then you could use ctrl+F to find it on the left side, which shows console output. (the last one would be the failing test) Alternatively you could just print a lot of stuff in your loop and trying to debug it to see where it gets stuck.
It means you're printing too much stuff into console.