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.
see my solution how I messed up both my solution and the reference solution, and still was able to pass the kata
This is a problem with the Coffeescript translation, NOT with the user's solution. The reference solution depends on a function
reverseSingleStrand
which the user has to create to be able to build the tests, but this gives users autonomy over part of the expected resultspoint for you
I think that this is some issue specific to your solution since other people can pass both basic an random tests with the same code. You can paste your code here and mark it as spam so those that have already completed it can help you.
Output required by the instructions:
Output required by the basic test:
Output required by Random tests:
Note the first line of the outputs
Obviously that makes it impossible to complete the kata.
please ellaborate
The only way to solve it is to evaluate if the input string matches the basic test and return the output in the format of that test, otherwise return in the manner expected by the random tests. But that solution implies bad practices.
The random tests do not respect the format of the output requested in the description of the Kata.
Well at leat one person has completed the kata on coffeescript so perhaps you are not asking the right questions
CoffeScript
language?
The basic test expect: 'Frame 1: AGG TGA ...' but the randoms test expets : 'AGA CGA GCT ..' and is imposible complete this kata.