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.
Very nice
Python translation [https://www.codewars.com/kumite/6866886ce4b88cf8390c4b5c?sel=6866886ce4b88cf8390c4b5c]
Confirming this is an issue; I just submitted a solution that fails these test cases but passed the submission tests based on luck.
Negative values with valid bases (2-16) like
#10#-1#
,-10
,-1_000_000
should be determined and (or) exists in tests.Because python author's solution return this as False. Lot of solutions return as True.
Passing tests is a matter of luck, if you dont get such values in random tests.
ᴙ (
Latin Letter Small Capital Reversed R
) != я (Cyrillic Capital Letter Ya
)Could you explain what you mean by that?
Today I found letter
ᴙ
which notЯ
orя
.heh, I made a solution that will allow it to be solved for (almost) arbitrary rotation angle. After that I saw other solutions. I think I need to make a kata for arbitrary rotation angle, or figure. btw (here is one)[https://www.codewars.com/kata/58b3c7b9917a5cb4aa0000c5/] similar.
Thanks. Inattention is my credo:)
Order of results is specified ( and
@bizzua
, yours is the other way around ).Approximate comparison reraised as
Issue
. Closing this one.Floating point values should be compared for approximate equality. See Docs.
Comparing floating point values for strict equality is actually an
Issue
. This often happens when kata deal with floating point values; it is documented here.Handling floating point representation inaccuracy wrong is a good way to collect downvotes from frustrated solvers.
[-0.21170577194406404, -37.78829422805593] should equal [-37.78829422805593, -0.21170577194406448]
please make the comparison approximate
and may be some rules for the order of the roots (or even better, take the roots in any order, and check the sorted roots in the test)
Python translation
tag this kata as
Strings
Loading more items...