Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [-1 2 5 8 4 0];
y_correct = [5 8];
assert(isequal(removeElements(x),y_correct))
|
2 | Pass |
x = [-1 2 5 9 7 4 0];
y_correct = [5 9 7];
assert(isequal(removeElements(x),y_correct))
|
272 Solvers
Make one big string out of two smaller strings
1148 Solvers
464 Solvers
Create a vector whose elements depend on the previous element
391 Solvers
Matlab Basics - Logical Tests I
192 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!