This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 1;
y_correct = 1;
assert(isequal(flip_vector(x),y_correct))
ans =
1
|
2 | Pass |
%%
x = [1:5];
y_correct = [5:-1:1];
assert(isequal(flip_vector(x),y_correct))
ans =
5 4 3 2 1
|
3 | Pass |
%%
x = [1 4 6];
y_correct = [6 4 1];
assert(isequal(flip_vector(x),y_correct))
ans =
6 4 1
|
4 | Pass |
%%
x = [10 5 9 ];
y_correct = [9 5 10];
assert(isequal(flip_vector(x),y_correct))
ans =
9 5 10
|
5 | Pass |
%%
x = [2 4 6 8];
y_correct = [8 6 4 2];
assert(isequal(flip_vector(x),y_correct))
ans =
8 6 4 2
|
559 Solvers
All your base are belong to us
425 Solvers
247 Solvers
Number of digits in an integer
271 Solvers
07 - Common functions and indexing 1
269 Solvers