This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [0 1 2 3 4];
assert(isequal(mono_increase(x),true));
n =
5
tf =
1
|
2 | Pass |
x = [0];
assert(isequal(mono_increase(x),true));
n =
1
tf =
1
|
3 | Pass |
x = [0 0 0 0 0];
assert(isequal(mono_increase(x),false));
n =
5
tf =
0
|
4 | Pass |
x = [0 1 2 3 -4];
assert(isequal(mono_increase(x),false));
n =
5
tf =
0
|
5 | Pass |
x = [-3 -4 2 3 4];
assert(isequal(mono_increase(x),false));
n =
5
tf =
0
|
6 | Pass |
x = 1:.1:10;
assert(isequal(mono_increase(x),true));
n =
91
tf =
1
|
7 | Pass |
x = cumsum(rand(1,100));
x(5) = -1;
assert(isequal(mono_increase(x),false));
n =
100
tf =
0
|
8 | Pass |
x = cumsum(rand(1,50));
assert(isequal(mono_increase(x),true));
n =
50
tf =
1
|
Return the largest number that is adjacent to a zero
3751 Solvers
We love vectorized solutions. Problem 1 : remove the row average.
547 Solvers
369 Solvers
ベクトル [1 2 3 4 5 6 7 8 9 10] の作成
292 Solvers
309 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!