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.
The class name should be
BasicTests
andRandomTests
, notBasic Tests
andRandom Tests
according to Ruby Style GuideAlso why is
Basic Tests
spelledBaisc Tests
Add a two words sample test for every language, see the "not issues" below about
"IF-RUDYARD KIPLING"
There is 100% a bug in the C RandomTests suite.
The bug is that it expects the input string to be modified in place, and it ignores the return value of your "correct" function.
There is no equivalent bug in C++, nor is there an equivalent bug in the C BasicTests suite.
This requirement is not stated in the problem, and is unique to one specific test suite in one specific language. It's a bug.
The workaround to meet this secret requirement is that you need to overwrite the input string with the result, before you return the result. That way, the broken RandomTests suite passes.
For NASM you should specify that the string is to be modified in place and returned.
In C version it should be noted that returned string is a mutated input string, not a copy of it.
If string is copied via
strdup()
, random tests are failing.This comment is hidden because it contains spoiler information about the solution
Duplicate of https://www.codewars.com/kata/burrows-wheeler-transformation
Duplicate of https://www.codewars.com/kata/burrows-wheeler-transformation