This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
test 3 is error
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
A = [ 12 4 7
5 1 4];
B_correct = [ 7 4 12
4 1 5 ];
assert(isequal(swap_ends(A),B_correct))
B =
7 4 12
4 1 5
|
2 | Pass |
A = [ 12 7
5 4];
B_correct = [ 7 12
4 5 ];
assert(isequal(swap_ends(A),B_correct))
B =
7 12
4 5
|
3 | Fail |
A = [ 1 5 0 2 3 ];
B_correct = [ 3 5 0 2 1 ];
assert(isequal(swap_ends(A),B_correct))
B =
3 2 0 5 1
|
4 | Pass |
A = 1;
B_correct = 1;
assert(isequal(swap_ends(A),B_correct))
B =
1
|
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!