Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 3 4 5 6 7 8];
A_correct = [8 7 6 5 4 3 2 1];
assert(isequal(flip_the_vector(x),A_correct));
B =
8 7 6 5 4 3 2 1
|
2 | Pass |
x = [5 6 78];
A_correct = [78 6 5];
assert(isequal(flip_the_vector(x),A_correct));
B =
78 6 5
|
3 | Pass |
x = -2;
A_correct = -2;
assert(isequal(flip_the_vector(x),A_correct));
B =
-2
|
Return a list sorted by number of occurrences
1504 Solvers
1159 Solvers
405 Solvers
364 Solvers
Sum of diagonals elements of a matrix
166 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!