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
An invisible U+00ad character is hidden there as the variable name.
(int)
was added to castvector.size()
to typeint
fromunsigned long
orstd::size_t
. If you don't add it, there will be compile time warning.std::pow
is the standard C++ function.pow
was derived from C stdlib.To avoid copying of a std::vector
[updated wiki link](https://en.wikipedia.org/wiki/Guard_(computer_science)
Re-raised as an issue.