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=2;
y_correct=[3 2
4 1];
assert(isequal(spiralmatrix(x),y_correct))
|
2 | Pass |
x=3;
y_correct=[7 6 5
8 1 4
9 2 3];
assert(isequal(spiralmatrix(x),y_correct))
|
3 | 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))
|
4 | 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))
|
Select every other element of a vector
16259 Solvers
397 Solvers
159 Solvers
378 Solvers
Multiples of a Number in a Given Range
141 Solvers