Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
x = [0 1 2 3 4];
assert(isequal(mono_increase(x),true));
|
2 | Fail |
x = [0];
assert(isequal(mono_increase(x),true));
|
3 | Fail |
x = [0 0 0 0 0];
assert(isequal(mono_increase(x),false));
|
4 | Fail |
x = [0 1 2 3 -4];
assert(isequal(mono_increase(x),false));
|
5 | Fail |
x = [-3 -4 2 3 4];
assert(isequal(mono_increase(x),false));
|
6 | Fail |
x = 1:.1:10;
assert(isequal(mono_increase(x),true));
|
7 | Fail |
x = cumsum(rand(1,100));
x(5) = -1;
assert(isequal(mono_increase(x),false));
|
8 | Fail |
x = cumsum(rand(1,50));
assert(isequal(mono_increase(x),true));
|
Swap the first and last columns
9882 Solvers
205 Solvers
find the maximum element of the matrix
254 Solvers
410 Solvers
255 Solvers