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;
y_correct=1;
assert(isequal(spiralmatrix(x),y_correct))
|
2 | Pass |
%%
x=2;
y_correct=[3 2
4 1];
assert(isequal(spiralmatrix(x),y_correct))
|
3 | Pass |
%%
x=3;
y_correct=[7 6 5
8 1 4
9 2 3];
assert(isequal(spiralmatrix(x),y_correct))
|
4 | Pass |
%%
x=4;
y_correct=[13 12 11 10
14 3 2 9
15 4 1 8
16 5 6 7];
assert(isequal(spiralmatrix(x),y_correct))
|
5 | Pass |
%%
x=5;
y_correct=[21 20 19 18 17
22 7 6 5 16
23 8 1 4 15
24 9 2 3 14
25 10 11 12 13];
assert(isequal(spiralmatrix(x),y_correct))
|
895 Solvers
201 Solvers
Get the length of a given vector
3561 Solvers
How many trades represent all the profit?
520 Solvers
Sum the entries of each column of a matrix which satisfy a logical condition.
136 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!