Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = magic(3); n=3;
y_correct = [1 6; 9 2];
assert(isequal(mat_remove(x,n),y_correct))
ni =
3
row =
2
col =
1
row =
2
col =
1
x =
8 1 6
4 9 2
temp =
8 1 6
4 9 2
x =
1 6
9 2
temp =
1 6
9 2
ans =
1 6
9 2
|
2 | Pass |
x=eye(9); n=[1 0];
y_correct = [];
assert(isequal(mat_remove(x,n),y_correct))
ni =
1
row =
1
2
3
4
5
6
7
8
9
col =
1
2
3
4
5
6
7
8
9
row =
1
2
3
4
5
6
7
8
9
col =
1
2
3
4
5
6
7
8
9
temp =
[]
ni =
0
row =
2
3
4
5
6
7
8
9
1
3
4
5
6
7
8
9
1
2
4
5
6
7
8
9
1
2
3
5
6
7
8
9
1
2
3
4
6
7
8
9
1
2
3
4
5
7
8
9
1
2
3
4
5
6
8
9
1
2
3
4
5
6
7
9
1
2
3
4
5
6
7
8
col =
1
1
1
1
1
1
1
1
2
2
2
2
2
2
2
2
3
3
3
3
3
3
3
3
4
4
4
4
4
4
4
4
5
5
5
5
5
5
5
5
6
6
6
6
6
6
6
6
7
7
7
7
7
7
7
7
8
8
8
8
8
8
8
8
9
9
9
9
9
9
9
9
row =
1
2
3
4
5
6
7
8
9
col =
1
2
3
4
5
6
7
8
9
temp =
[]
ans =
[]
|
3 | Pass |
x=ones(8); n=1;
y_correct = [];
assert(isequal(mat_remove(x,n),y_correct))
ni =
1
row =
1
2
3
4
5
6
7
8
1
2
3
4
5
6
7
8
1
2
3
4
5
6
7
8
1
2
3
4
5
6
7
8
1
2
3
4
5
6
7
8
1
2
3
4
5
6
7
8
1
2
3
4
5
6
7
8
1
2
3
4
5
6
7
8
col =
1
1
1
1
1
1
1
1
2
2
2
2
2
2
2
2
3
3
3
3
3
3
3
3
4
4
4
4
4
4
4
4
5
5
5
5
5
5
5
5
6
6
6
6
6
6
6
6
7
7
7
7
7
7
7
7
8
8
8
8
8
8
8
8
row =
1
2
3
4
5
6
7
8
col =
1
2
3
4
5
6
7
8
temp =
[]
ans =
[]
|
4 | Pass |
x=spiral(3); n=1;
y_correct = [7 9; 5 3];
assert(isequal(mat_remove(x,n),y_correct))
ni =
1
row =
2
col =
2
row =
2
col =
2
x =
7 8 9
5 4 3
temp =
7 8 9
5 4 3
x =
7 9
5 3
temp =
7 9
5 3
ans =
7 9
5 3
|
3076 Solvers
Replace NaNs with the number that appears to its left in the row.
2018 Solvers
404 Solvers
394 Solvers
187 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!