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.
PHP translation (Author inactive)
Java Translation
This is not an excuse. The rule should either be enforced or removed.
Test.expect
, useassert_equals
instead... :(No random tests
Duplicate of https://www.codewars.com/kata/counting-in-english-one-two-three-dot-dot-dot-to-2-quadrillion-2-000-000-000-000-000, and many other existing katas.
Description is horribly inadequate and the use of
Test.expect
is just horrible.Like, what do you expect us to return for
999
? Are we going to have to guess to just know what the spec you have in mind?(Or the existing of stuff like a quintillion)
I think the conditions are not that clear... "The string can have any content and any length but must have zero or more blanks followed by zero to eight numeric digits followed by, again, zero or more blanks to be valid."
So "Hey boy 1234 " is a valid string... and no top solution will give it as valid.
You have to say as craecke notes that the string to be valid must have and only have zero or more blanks followed by zero to eight numeric digits followed by, again, zero or more blanks to be valid and in that case the kata is trivial.
Furthermore "Value is not what was expected" is rather terse!
The explanation of this kata needs some work. The description, "it must have zero or more blanks followed by zero to eight numeric digits followed by, again, zero or more blanks," applies not only to every example given, including those marked as invalid, but I think it applies to every possible string. I think you meant to say that not only does the string need to have a part that fits that description, but it's not allowed to have anything else in it in addition to that. Also, you do have ways of enforcing your extra challenges: you can prevent people from using regular expressions as well as the each and map methods by writing "preloaded" code. I don't think you can prevent them from using while loops, though.