Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y_correct = 1;
assert(isequal(flip_vector(x),y_correct))
n =
1
y =
1
|
2 | Pass |
x = [1:5];
y_correct = [5:-1:1];
assert(isequal(flip_vector(x),y_correct))
n =
5
y =
5
y =
5 4
y =
5 4 3
y =
5 4 3 2
y =
5 4 3 2 1
|
3 | Pass |
x = [1 4 6];
y_correct = [6 4 1];
assert(isequal(flip_vector(x),y_correct))
n =
3
y =
6
y =
6 4
y =
6 4 1
|
4 | Pass |
x = [10 5 9 ];
y_correct = [9 5 10];
assert(isequal(flip_vector(x),y_correct))
n =
3
y =
9
y =
9 5
y =
9 5 10
|
5 | Pass |
x = [2 4 6 8];
y_correct = [8 6 4 2];
assert(isequal(flip_vector(x),y_correct))
n =
4
y =
8
y =
8 6
y =
8 6 4
y =
8 6 4 2
|
6 | Pass |
code = fileread('flip_vector.m');
assert(isempty(strfind(code, 'fliplr')));
|
651 Solvers
Get the length of a given vector
3558 Solvers
Right Triangle Side Lengths (Inspired by Project Euler Problem 39)
511 Solvers
281 Solvers
221 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!