Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [2 6 4 9 -10 3 1 5 -10];
y_correct = 9;
assert(isequal(min_lpos(x),y_correct))
|
2 | Pass |
%%
x = [2 6 4 9 10 3 1 5 10];
y_correct = 7;
assert(isequal(min_lpos(x),y_correct))
|
3 | Pass |
%%
x = [0 0 0 0];
y_correct = 4;
assert(isequal(min_lpos(x),y_correct))
|
4 | Pass |
%%
x = [-20 6 4 9 3 1 5 -10];
y_correct = 1;
assert(isequal(min_lpos(x),y_correct))
|
405 Solvers
Rotate input square matrix 90 degrees CCW without rot90
380 Solvers
489 Solvers
Add a row of zeros on top of a matrix
193 Solvers
615 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!