Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [0 1 2 3 4];
assert(isequal(mono_increase(x),true));
ans =
[]
|
2 | Pass |
%%
x = [0];
assert(isequal(mono_increase(x),true));
ans =
[]
|
3 | Pass |
%%
x = [0 0 0 0 0];
assert(isequal(mono_increase(x),false));
ans =
[]
|
4 | Pass |
%%
x = [0 1 2 3 -4];
assert(isequal(mono_increase(x),false));
ans =
[]
|
5 | Pass |
%%
x = [-3 -4 2 3 4];
assert(isequal(mono_increase(x),false));
ans =
[]
|
6 | Pass |
%%
x = 1:.1:10;
assert(isequal(mono_increase(x),true));
ans =
[]
|
7 | Pass |
%%
x = cumsum(rand(1,100));
x(5) = -1;
assert(isequal(mono_increase(x),false));
ans =
[]
|
8 | Pass |
%%
x = cumsum(rand(1,50));
assert(isequal(mono_increase(x),true));
ans =
[]
|
Return the 3n+1 sequence for n
5207 Solvers
210 Solvers
Sum the numbers on the main diagonal
375 Solvers
Find out sum of all elements of given Matrix
272 Solvers
381 Solvers