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 = 2;
y_correct = [-4 -3 -2 -1 0
-3 -2 -1 0 1
-2 -1 0 1 2
-1 0 1 2 3
0 1 2 3 4];
assert(isequal(mystery_matrix(n),y_correct))
|
2 | Pass |
n = 3;
y_correct = [-6 -5 -4 -3 -2 -1 0
-5 -4 -3 -2 -1 0 1
-4 -3 -2 -1 0 1 2
-3 -2 -1 0 1 2 3
-2 -1 0 1 2 3 4
-1 0 1 2 3 4 5
0 1 2 3 4 5 6];
assert(isequal(mystery_matrix(n),y_correct))
|
3 | Pass |
n = 5;
y_correct = [-10 -9 -8 -7 -6 -5 -4 -3 -2 -1 0
-9 -8 -7 -6 -5 -4 -3 -2 -1 0 1
-8 -7 -6 -5 -4 -3 -2 -1 0 1 2
-7 -6 -5 -4 -3 -2 -1 0 1 2 3
-6 -5 -4 -3 -2 -1 0 1 2 3 4
-5 -4 -3 -2 -1 0 1 2 3 4 5
-4 -3 -2 -1 0 1 2 3 4 5 6
-3 -2 -1 0 1 2 3 4 5 6 7
-2 -1 0 1 2 3 4 5 6 7 8
-1 0 1 2 3 4 5 6 7 8 9
0 1 2 3 4 5 6 7 8 9 10];
assert(isequal(mystery_matrix(n),y_correct))
|
17468 Solvers
1163 Solvers
Determine if a Given Number is a Triangle Number
322 Solvers
306 Solvers
359 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!