This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [];
y_correct = [];
assert(isequal(backAndforth(x),y_correct))
|
2 | Pass |
x = 0;
y_correct = [0 0];
assert(isequal(backAndforth(x),y_correct))
|
3 | Pass |
x = [1 4 3 2];
y_correct = [1 2 3 4 4 3 2 1];
assert(isequal(backAndforth(x),y_correct))
|
4 | Pass |
x = [1; 4; 3; 2];
y_correct = [1 1; 4 4; 3 3; 2 2];
assert(isequal(backAndforth(x),y_correct))
|
5 | Pass |
x = [9 2 8 1; 5 4 9 8; 8 9 6 9];
y_correct = [1 2 8 9 9 8 2 1;
4 5 8 9 9 8 5 4;
6 8 9 9 9 9 8 6];
assert(isequal(backAndforth(x),y_correct))
|
363 Solvers
Back to basics 25 - Valid variable names
253 Solvers
367 Solvers
179 Solvers
Matlab Basics - Absolute Value
272 Solvers