This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 7;
y_correct = [2,3];
assert(isequal(nim(x),y_correct))
a =
16
a1 =
2
a2 =
2
ans =
2 3
|
2 | Pass |
x = 11;
y_correct = [2,5];
assert(isequal(nim(x),y_correct))
a =
46
a1 =
4
a2 =
2
ans =
2 5
|
3 | Pass |
x = 3;
y_correct = [2,1];
assert(isequal(nim(x),y_correct))
a =
2
a1 =
0
a2 =
2
ans =
2 1
|
Change the sign of even index entries of the reversed vector
214 Solvers
325 Solvers
409 Solvers
341 Solvers
168 Solvers