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));
|
2 | Pass |
x = [5 6 78];
A_correct = [78 6 5];
assert(isequal(flip_the_vector(x),A_correct));
|
3 | Pass |
x = -2;
A_correct = -2;
assert(isequal(flip_the_vector(x),A_correct));
|
Maximum running product for a string of numbers
816 Solvers
How to find the position of an element in a vector without using the find function
2320 Solvers
281 Solvers
Make a run-length companion vector
453 Solvers
289 Solvers