This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
A = [1 2 3; 4 5 6];
n = 2;
B_correct = [1 3; 4 6];
assert(isequal(column_removal(A,n),B_correct))
B =
[]
m =
2
p =
3
B =
1
4
B =
1 3
4 6
|
2 | Pass |
A = magic(4);
n = 3;
B = [16 2 13;
5 11 8;
9 7 12;
4 14 1];
B_correct = B;
assert(isequal(column_removal(A,n),B_correct))
B =
[]
m =
4
p =
4
B =
16
5
9
4
B =
16 2
5 11
9 7
4 14
B =
16 2 13
5 11 8
9 7 12
4 14 1
|
3 | Pass |
A = 1:10;
n = 7;
B_correct = [1 2 3 4 5 6 8 9 10];
assert(isequal(column_removal(A,n),B_correct))
B =
[]
m =
1
p =
10
B =
1
B =
1 2
B =
1 2 3
B =
1 2 3 4
B =
1 2 3 4 5
B =
1 2 3 4 5 6
B =
1 2 3 4 5 6 8
B =
1 2 3 4 5 6 8 9
B =
1 2 3 4 5 6 8 9 10
|
Which values occur exactly three times?
3817 Solvers
Find state names that end with the letter A
707 Solvers
Reverse the Words (not letters) of a String
297 Solvers
find the maximum element of the matrix
348 Solvers
Find the sides of an isosceles triangle when given its area and height from its base to apex
449 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!