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.
The description is still incomplete and the task is still not novel at all. Please, don't resolve issues for no reason.
resolved, thanks
Yes indeed, it will be better this way, thanks
include
forstd::vector
random
header's functionality should be used instead ofstd::srand
andstd::rand
Not sure about that, but there's no need for vector of vectors to store solutions. Simply create a copy of the generated vector, pass it to your solution to get the expected value, and then pass the original vector to solver function. At that point, the user can modify anything they want, the expected answer won't change.
fixed(at least i hope so)
Random tests are vulnerable to input modification. Compute the expected value first.
using namespace std
, and the tests shouldn't rely on the user's solution to include itstd::vector<unsigned>
and the output type should beunsigned
{1, 2, 2, 2, 1, 1}
supposed to represent?I'm pretty sure this is a duplicate as well.