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))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In column_removal (line 2)
In ScoringEngineTestPoint1 (line 4)
In solutionTest (line 3)]
|
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))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In column_removal (line 2)
In ScoringEngineTestPoint2 (line 8)
In solutionTest (line 5)]
|
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))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In column_removal (line 2)
In ScoringEngineTestPoint3 (line 4)
In solutionTest (line 7)]
|
Sum all integers from 1 to 2^n
6323 Solvers
196 Solvers
Flip the main diagonal of a matrix
426 Solvers
Create a vector whose elements depend on the previous element
290 Solvers
Magic is simple (for beginners)
1110 Solvers