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.
This comment is hidden because it contains spoiler information about the solution
Input range should be specified.
Whats the point of the
bits
argument intoTwosComplement
? it seems to always be equal to the number of digits in the input string, i did not use it in my solution and still passed the testsPython new test framework should be used (Refer this & this for more detail)
Ruby 3.0 should be enabled (Refer this & this for more detail)
No random tests in ruby
Python: the reference solution may return incorrect results in some rare cases. Here one example:
The optimal solution is
27
and the reference solution returns29
.This comment is hidden because it contains spoiler information about the solution
Random inputs are vulnerable to input modification.
Almost a duplicate:
https://www.codewars.com/kata/51ba717bb08c1cd60f00002f
https://www.codewars.com/kata/55fb6537544ae06ccc0000dc
This comment is hidden because it contains spoiler information about the solution
Hi
There are too much unspecified behaviors:
what you do with the section
8, 9, 9
seems inconsistent with the described rules:8-9
'8', '9', '9'
, not'8', '9'
(yes, my code is wrong in both cases, for now. ;p )
The description asks for the first vowel to be replaced, but the tests want all vowels to be replaced.
Also: I fully agree with Blind4Basics and Voile.
Hi,
You do not understand the goal of this (issue):
CW has already too many katas of this kind. The idea is to discontinue the flow of them, appearing again and again and decreasing the overall interest of the plateform, flooding the interesting pieces.
I see you aren't new to the website, so you should know the general feeling about that. Kids can do the other katas of the same kind, there is no need to publish new ones. If you want to use this kata for your own purpose you still can unpublish it and send the link of the draft version to the persons of interest.
Please do not resolve this issue just to resolve it.
Regards,
B4B
The description should has stated something like "If not possible, return None"