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 = [ 1, 2, 3; 3, 5, 9; 1, 8, 0 ]
y_correct = [3, 5, 9; 1, 8, 0]
assert(isequal(remove_row(x),y_correct))
x =
1 2 3
3 5 9
1 8 0
y_correct =
3 5 9
1 8 0
|
2 | Pass |
x = [ 3, 5; 1, 0 ]
y_correct = [1, 0]
assert(isequal(remove_row(x),y_correct))
x =
3 5
1 0
y_correct =
1 0
|
282 Solvers
Change the sign of even index entries of the reversed vector
214 Solvers
Determine the Anti-diagonal of a Magic Square
67 Solvers
155 Solvers
60 Solvers