Invalid solution. If the array has one column, this solution generates two columns.
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 | Fail |
%%
A = 1;
B_correct = 1;
assert(isequal(swap_ends(A),B_correct))
Error: Assertion failed.
|
Return a list sorted by number of occurrences
1225 Solvers
The Goldbach Conjecture, Part 2
964 Solvers
365 Solvers
Least common multiple of many numbers
159 Solvers
Try 1.5.4: Celsius to Fahrenheit
486 Solvers