Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [2 6 4 9 -10 3 1 5 -10];
y_correct = 5;
assert(isequaln(n_max(x,3),y_correct))
|
2 | Pass |
x = [2 6 4 9 -10 3 1 5 -10];
y_correct = NaN;
assert(isequaln(n_max(x,13),y_correct))
|
3 | Pass |
x = [0 0 0 -2 0 -6];
y_correct = -2;
assert(isequaln(n_max(x,5),y_correct))
|
4 | Pass |
x = [1 1 1 1 1 1];
y_correct = 1;
assert(isequaln(n_max(x,4),y_correct))
|
5 | Pass |
x = [1 1 1 1 1 1];
y_correct = NaN;
assert(isequaln(n_max(x,14),y_correct))
|
Make the vector [1 2 3 4 5 6 7 8 9 10]
35553 Solvers
9834 Solvers
1421 Solvers
320 Solvers
555 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!