we had a similar problem in my class
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))
|
Find the numeric mean of the prime numbers in a matrix.
6782 Solvers
Remove all the words that end with "ain"
1292 Solvers
Create a cell array out of a struct
508 Solvers
348 Solvers
993 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!