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 | Fail |
assert(isequal(another([1 8 12],[4 5 9]),[1 2 3 4 8 7 6 5 12 11 10 9]))
a =
3
|
2 | Fail |
assert(isequal(another([5 5 5],[9 5 1]),[5 6 7 8 9 5 5 4 3 2 1]))
a =
3
|
3 | Fail |
assert(isequal(another([100 102],[-1 105]),[100:-1:-1 102 103 104 105]))
a =
2
|
4 | Fail |
y=[randi(20) randi([30 40],1,2) randi(3)];
assert(isequal(another(y(1:2:3),y(2:2:4)),[y(1):y(2) y(3):-1:y(4)]))
a =
2
|
5 | Fail |
assert(isequal(another([1 2 1 2 2 2 1 1 1],[1 2 1 1 2 1 2 2 1]),[1 2 1 2 1 2 2 1 1 2 1 2 1]))
a =
9
|
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!