Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [0 1 2 3 4];
assert(isequal(mono_increase(x),true));
|
2 | Pass |
x = [0 1 2 3 -4];
assert(isequal(mono_increase(x),false));
|
3 | Pass |
x = [-3 -4 2 3 4];
assert(isequal(mono_increase(x),false));
|
4 | Pass |
x = 1:.1:10;
assert(isequal(mono_increase(x),true));
|
5 | Pass |
x = cumsum(rand(1,100));
x(5) = -1;
assert(isequal(mono_increase(x),false));
|
6 | Pass |
x = cumsum(rand(1,50));
assert(isequal(mono_increase(x),true));
|
Find all elements less than 0 or greater than 10 and replace them with NaN
13051 Solvers
Remove the small words from a list of words.
672 Solvers
3968 Solvers
351 Solvers
Return elements unique to either input
550 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!