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 = [3 2 1 3; 3 0 0 1; 0 4 3 1];
y = matrixManipulation(x);
v = 3:15;
assert(isequal(x(1,:),y(1,:)))
assert(isempty(setdiff(y(2,:),v)))
assert(isempty(setdiff(y(3,:),v)))
|
2 | Pass |
x = eye(4);
y = matrixManipulation(x);
v = 3:15;
for i = 1:4
assert(isempty(setdiff(y(i,:),v)))
end
|
3 | Pass |
x = ones(4);
y = matrixManipulation(x);
assert(isequal(x,y))
|
451 Solvers
264 Solvers
155 Solvers
51 Solvers
130 Solvers