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.
approved
Thanks!
I'm curious why you made the verification function visible to the user. Don't people usually put it in preloaded?
Fixed.
I wouldn't say a warning is really an issue though, more of a suggestion. :-)
Approved by someone
It looks like the unused variable
_
only exists to cause it to be initialized with the result of_write_t_buf
etc. as a way to execute those functions in thefor
loop setup. It seems kind of hacky, and I made it be quiet in a similarly hacky way, byturningburying that unneeded return value in the0
we actually needed earlier:well, it SeemsToWorkâ˘
I think I have fixed this now
looks ok
Let's see with the translator of this kata into Rust: @akar-0
Fixed.
The warning is no longer there.
This message should not prevent your solution from passing if it's correct. I will remove the problem, but your solution is most probably wrong in some way.
approved
Because
BigInt
is clear enough as a general type, and some languages don't even have the concept of unsigned numbers. I see no reason to make this language specific if the exact type is clear from the signature.description still mentions this ..
Note: I chose
BigUint
everywhere. I also refactored the tests and made better assertions, so mine is now the official version, sorry :)Loading more items...