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.
This comment is hidden because it contains spoiler information about the solution
the part that initially tripped me up dealt with the fact that each day of the week isn't a list of values - its a list of a list of values.
i don't have much python experience - so i'm not sure this is normal/standard.
just seemed like there was too much wrapping.
quick kata
This comment is hidden because it contains spoiler information about the solution
If I were to guess:
As such - it is not a garbage answer.
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
I agree; however, when I made the kata it wouldn't bless it until I forced the default provided solution to fail some sort of unit tests.
So I assert this to create an intentionally-wrong state so that it would cleanly publish.
I'm having a problem that I presume to be caused by my submitted code; however, I don't see it.
My initial test passes nothing and I have my function returning an empty array; I have this as the expected result as well.
However, it indicates the test fails.
Scenario:
function intlev(){
return [];
}
Test.assertEquals(intlev(), []);
Please help or make a recommendation!