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 = 3;
y_correct = [6 5 4];
assert(isequal(other_diag(x),y_correct))
y =
6 5 4
|
2 | Pass |
x = 4
y_correct = [13 10 7 4];
assert(isequal(other_diag(x),y_correct))
x =
4
y =
13 10 7 4
|
3 | Pass |
x = 7;
y_correct = [28 27 26 25 24 23 22];
assert(isequal(other_diag(x),y_correct))
y =
28 27 26 25 24 23 22
|
1055 Solvers
239 Solvers
Is this triangle right-angled?
1918 Solvers
103 Solvers
Matlab Basics II - Log and natural log
100 Solvers