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))
x =
5 8
|
2 | Pass |
x = [-1 2 5 9 7 4 0];
y_correct = [5 9 7];
assert(isequal(removeElements(x),y_correct))
x =
5 9 7
|
Project Euler: Problem 6, Natural numbers, squares and sums.
1018 Solvers
Given a matrix, return the last eigen value
175 Solvers
Output any real number that is neither positive nor negative
316 Solvers
445 Solvers
Matlab Basics II - Extract last 3 elements of a vector
164 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!