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.
see issue above, please.
Approved.
Java translation
rewrote the description
the graphs are directed. going from
A
toB
is not the same as going fromB
toA
all done except big cyclic graphs
Reraised as issue
No random tests in CS
When
a = "011"
andb = "01"
,your solution compared them as0 vs 0 and 1 vs 1
but it should be0 vs 0, 0 vs 1 and 1 vs 1 (011 & 001)
Seriously ?! 7kyu ?
Node 12 should be enabled (Refer this and this for more info)
Python new test framework should be used (Refer this & this for more detail)
Ruby 3.0 should be enabled (Refer this & this for more detail)
Raising about the elephant in the room, since FArekkusu seems to be missing the almost obvious...
nodes
is reassigned along the way, and used as a global var. That's bad too. Moreover when one considers that the user has absolutely no use for it. The tests should be rewritten without that or at least without it being "visible" to the user.suggestion:
Tests with big cyclic graphs should be added, to check that the user is actually keeping track of what he does (ie. implement an algo that can terminate...). That would be a bit more appropriate considering the rank.
cheers
No random tests.
Loading more items...