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 |
%%
n = 1;
y_correct =[0];
assert(isequal(Matrix_Spiral(n),y_correct))
|
2 | Pass |
%%
n = 2;
y_correct =[11 11
0 0];
assert(isequal(Matrix_Spiral(n),y_correct))
|
3 | Pass |
%%
n = 3;
y_correct =[11 11 11
0 0 11
0 0 0];
assert(isequal(Matrix_Spiral(n),y_correct))
|
4 | Pass |
%%
n = 4;
y_correct =[11 11 11 11
0 0 0 11
0 0 11 11
0 0 0 0];
assert(isequal(Matrix_Spiral(n),y_correct))
|
5 | Pass |
%%
n = 5;
y_correct =[11 11 11 11 11
0 0 0 0 11
0 0 11 0 11
0 0 11 11 11
0 0 0 0 0];
assert(isequal(Matrix_Spiral(n),y_correct))
|
6 | Pass |
%%
n = 10;
y_correct =[11 11 11 11 11 11 11 11 11 11
0 0 0 0 0 0 0 0 0 11
0 0 11 11 11 11 11 11 0 11
0 0 11 0 0 0 0 11 0 11
0 0 11 0 11 11 0 11 0 11
0 0 11 0 11 0 0 11 0 11
0 0 11 0 11 11 11 11 0 11
0 0 11 0 0 0 0 0 0 11
0 0 11 11 11 11 11 11 11 11
0 0 0 0 0 0 0 0 0 0];
assert(isequal(Matrix_Spiral(n),y_correct))
|
7 | Pass |
%%
n = 17;
y_correct =[11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11
0 0 11 11 11 11 11 11 11 11 11 11 11 11 11 0 11
0 0 11 0 0 0 0 0 0 0 0 0 0 0 11 0 11
0 0 11 0 11 11 11 11 11 11 11 11 11 0 11 0 11
0 0 11 0 11 0 0 0 0 0 0 0 11 0 11 0 11
0 0 11 0 11 0 11 11 11 11 11 0 11 0 11 0 11
0 0 11 0 11 0 11 0 0 0 11 0 11 0 11 0 11
0 0 11 0 11 0 11 0 11 0 11 0 11 0 11 0 11
0 0 11 0 11 0 11 0 11 11 11 0 11 0 11 0 11
0 0 11 0 11 0 11 0 0 0 0 0 11 0 11 0 11
0 0 11 0 11 0 11 11 11 11 11 11 11 0 11 0 11
0 0 11 0 11 0 0 0 0 0 0 0 0 0 11 0 11
0 0 11 0 11 11 11 11 11 11 11 11 11 11 11 0 11
0 0 11 0 0 0 0 0 0 0 0 0 0 0 0 0 11
0 0 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0];
assert(isequal(Matrix_Spiral(n),y_correct))
|
797 Solvers
Create a cell array out of a struct
189 Solvers
Make a random, non-repeating vector.
1116 Solvers
Unique values without using UNIQUE function
115 Solvers
Fahrenheit to Celsius converter
262 Solvers