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.
Thanks, it should be fixed now.
Issues:
97
and123
are amgic values which could be replaced by somethign more explicit, like'a'
and'z'
.@Tag
annotation is not used correctly.EncryptingWordsTest
does not conform to Java naming conventions.result += letter;
is very bad. Please let's not promote antipatterns and use proper mechanisms for mutable strings (likeStringBuilder
).Rejecting as superseded by https://www.codewars.com/kumite/6436b6568c24e800171c15e4?sel=644a64636ed55235e905888e
Rejecting as superseded by https://www.codewars.com/kumite/6436b6568c24e800171c15e4?sel=644a64636ed55235e905888e
Thanks, it should be fixed now.
Hello there.
comented lines of code is a smell coding
Better use RepeatedTest in random test rather than use a inner bucle for repetition of them
No side cases tested. Empy String input for example
Use only camel form in variable names (code_ascii)
Fixed invalid number case.
Separated nullity, empty String and invalid numbers in different tests.
Made random test execute 50 times instead of 1.
Java translation