Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 2;
y = [1 0;0 1];
assert(isequal(M_Const(n),y))
|
2 | Pass |
n = 4;
y = [1 2 0 0
1 2 0 0;
0 0 2 1
0 0 2 1];
assert(isequal(M_Const(n),y))
|
3 | Pass |
n = 6;
y = [1 2 3 0 0 0
1 2 3 0 0 0
1 2 3 0 0 0
0 0 0 3 2 1
0 0 0 3 2 1
0 0 0 3 2 1];
assert(isequal(M_Const(n),y))
|
4 | Pass |
n = 8;
y = [ 1 2 3 4 0 0 0 0
1 2 3 4 0 0 0 0
1 2 3 4 0 0 0 0
1 2 3 4 0 0 0 0
0 0 0 0 4 3 2 1
0 0 0 0 4 3 2 1
0 0 0 0 4 3 2 1
0 0 0 0 4 3 2 1];
assert(isequal(M_Const(n),y))
|
307 Solvers
How many trades represent all the profit?
460 Solvers
07 - Common functions and indexing 2
255 Solvers
What is Sum Of all elements of Matrix
215 Solvers
326 Solvers