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.
Totally, it's totally not happening at line 62 of fixture.kt. Nope. Not happening at all.
Kotlin
The tests fail.
The tests are passing an unchecked casted Array of String? to the function argument declared as Array of String. This causes an impossible solution. Change the function stub to take Array of String? then all the other tests fail as they are trying to pass in the wrong type. The issue isn't resolved because the tests are still wrong not only from an actual assertion standpoint but from an actual coding practice standpoint.
It also has bugs in Kotlin.
Kotlin
The tests fail.
The tests are passing an unchecked casted Array of String? to the function argument declared as Array of String. This causes an impossible solution. Change the function stub to take Array of String? then all the other tests fail as they are trying to pass in the wrong type. The issue isn't resolved because the tests are still wrong not only from an actual assertion standpoint but from an actual coding practice standpoint.
This tells me there is something wrong with this.
It's particularly hard to figure out what's wrong with a test without seeing the input for the tests, regarding the Kotlin tests. I haven't tried it with another language but my solution seems sound but I'm failing 2 tests without any info to lead into what is wrong other than "expected but found" which doesn't help if I don't know the input.