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 listed languages do not comply with the rule from the description:
Some of these issues have been mentioned before, but they haven't been fixed, so I'm raising them again.
Most translations use Braille characters as Unicode tests. This is likely because the translations were done from Python and thus inherited its Unicode test suite. N stated below that the lack of random Unicode tests for Python isn't a big problem, but that's not true. Python is the most common language on CodeWars, and the likelihood that translations into other programming languages will be done from Python is very high, so the Python version should be flawless and serve as a kind of gold standard.
now on dart Translation Dart
For C# the opening and closing braces of the class should be at the line start.
Typo in the description in "The digits are sequential, incementing†: 1234" : "incementing" instead of "incrementing".
According to the description exactly as stated, if you put a 2-digit number in
awesome_phrases(like 69) then it should not signal when reaching this number. Is that the expected behavior? Or shouldawesome_phrasesbe an exception to the 3-digit mileage rule?This comment is hidden because it contains spoiler information about the solution
can someone please explain, how i should get another 2 element from test for knowing out is there any interesting number?
Not all languages (eg Python) test for Unicode-only characters, and instead only test for Ascii.
JS, maybe others:
Literally a single random test. Just the one.
WTF?
expected 'G' to equal ','
I want to see the test case that fails! I don't know what to fix! :(
This comment is hidden because it contains spoiler information about the solution
suggested edge cases that a first version of my code did not handle correctly, but passed anyways:
"1,2,,\n3,4"-->[ [ '1', '2', '', '' ], [ '3', '4' ] ]"1,2,,"-->[ ['1', '2', '', ''] ]"a,b,c\n"-->[ ['a', 'b', 'c'], [''] ]"\n\n\n"-->[ [''], [''], [''], [''] ]Python (at least):
Random Tests are not guaranteed to fail a faulty solution such as this one that fails to account for upper / lowercase counting as the same char, as shown the 3 test cases below.
What's meen testUpcomingBigNumbers
It's last crash test, and i don't understand how will make correctly
JS Node 18. should be enabled
decodeURIComponentfunction is not mentioned anywhereLoading more items...