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.
Thank you, fixed
Have fixed test cases
Python random test cases have bugs, that VIOLATE kata description
e.g.:
'U5y', 'QAt';
'lRuCSFUkYf', 'b4Lzkjz9sE';
etc.
I believe, there is a slight bug in Python random test cases, e.g.:
I get
but the right hex representation of
3901
is0xf3d
(case insensitive) andF0x3d
is an invalid hex number;More example:
the right hex representation of
2627
-0xa43
,a0x43
is an invalid hex number;the right hex representation of
743783
-0xb5967
,B0x5967
is an invalid hex number.P.S. I had to run solution about 20 times before getting another buggy test case.
Agree
Thank you for your remarks and suggestions
Fixed?
Agree
Fixed
Sorry for the delayed reply.
I had a bug in my code - confused class field with instance field.
Issue resolved.
Got it, sorry for misunderstanding
I believe, for some n there are more than one solution!
I.e.:
There is definitely a bug in Python translation in random tests.
Example logs:
'h.' should match hh
'....' should match lkvu, code, alda, kxxh
This comment is hidden because it contains spoiler information about the solution
Adding DISTINCT keywork solves the constraint to use IN without actually using it)
Definitely true, but in case of few number of iterations, like in the cata above, you won't notice a difference in time
It should be mentioned in the description that spaces in the begining/end of test cases are VALID or change the test cases to return 0
Correct wrong type of parameter - should be long
In other way the compiler produces errors because of type overflowing
Loading more items...