helpfull!
Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
x = 1;
y_correct = 1;
assert(isequal(reverseVector(x),y_correct))
|
2 | Fail |
x = -10:1;
y_correct = 1:-1:-10;
assert(isequal(reverseVector(x),y_correct))
|
3 | Fail |
x = 'able was i ere i saw elba';
y_correct = 'able was i ere i saw elba';
assert(isequal(reverseVector(x),y_correct))
|
19329 Solvers
Celsius to Fahrenheit converter
388 Solvers
What is Sum Of all elements of Matrix
292 Solvers
Find out sum and carry of Binary adder
379 Solvers
Finding perimeter of a rectangle
278 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!