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))
|
2 | Pass |
%%
A = [ 12 7
5 4];
B_correct = [ 7 12
4 5 ];
assert(isequal(swap_ends(A),B_correct))
|
3 | Pass |
%%
A = [ 1 5 0 2 3 ];
B_correct = [ 3 5 0 2 1 ];
assert(isequal(swap_ends(A),B_correct))
|
4 | Pass |
%%
A = 1;
B_correct = 1;
assert(isequal(swap_ends(A),B_correct))
|
Find the sum of all the numbers of the input vector
31947 Solvers
Return the 3n+1 sequence for n
6167 Solvers
ベクトル [1 2 3 4 5 6 7 8 9 10] の作成
292 Solvers
Check that number is whole number
1070 Solvers
Find the sides of an isosceles triangle when given its area and height from its base to apex
449 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!