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))
|
Back to basics 19 - character types
189 Solvers
Find out missing number from a vector of 9 elements
208 Solvers
304 Solvers
244 Solvers
109 Solvers