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 = zeros(100);
x(41,68) = 1;
y_correct = zeros(100,200);
y_correct(41,100:101) = [1,1];
assert(isequal(backAndforth(x),y_correct))
|
4 | Pass |
x = [1 4 3 2];
y_correct = [1 2 3 4 4 3 2 1];
assert(isequal(backAndforth(x),y_correct))
|
5 | Pass |
x = 1:10;
y_correct = [x,fliplr(x)];
assert(isequal(backAndforth(x),y_correct))
|
6 | Pass |
x = (1:10)';
y_correct = [x,x];
assert(isequal(backAndforth(x),y_correct))
|
7 | Pass |
x = [1; 4; 3; 2];
y_correct = [1 1; 4 4; 3 3; 2 2];
assert(isequal(backAndforth(x),y_correct))
|
8 | 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))
|
9 | Pass |
x = reshape(1:9,[3,3]);
r = [1:3:7,7:-3:1];
y_correct = [r;r+1;r+2];
assert(isequal(backAndforth(x),y_correct))
|
4599 Solvers
given 3 sides, find area of this triangle
680 Solvers
Arrange vector in ascending order
624 Solvers
find the maximum element of the matrix
349 Solvers
Approximate the cosine function
263 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!