Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 1;
y_correct = 1;
assert(isequal(flip_vector(x),y_correct))
|
2 | Pass |
%%
x = [1:5];
y_correct = [5:-1:1];
assert(isequal(flip_vector(x),y_correct))
|
3 | Pass |
%%
x = [1 4 6];
y_correct = [6 4 1];
assert(isequal(flip_vector(x),y_correct))
|
4 | Pass |
%%
x = [10 5 9 ];
y_correct = [9 5 10];
assert(isequal(flip_vector(x),y_correct))
|
5 | Pass |
%%
x = [2 4 6 8];
y_correct = [8 6 4 2];
assert(isequal(flip_vector(x),y_correct))
|
6 | Pass |
%%
code = fileread('flip_vector.m');
assert(isempty(strfind(code, 'fliplr')));
|
Project Euler: Problem 7, Nth prime
522 Solvers
445 Solvers
Find the dimensions of a matrix
373 Solvers
Deleting an element in a matrix
325 Solvers
286 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!