Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [0 1 2 3 4];
assert(isequal(mono_increase(x),true));
tf =
logical
1
|
2 | Pass |
x = [0 1 2 3 -4];
assert(isequal(mono_increase(x),false));
tf =
logical
0
|
3 | Pass |
x = [-3 -4 2 3 4];
assert(isequal(mono_increase(x),false));
tf =
logical
0
|
4 | Pass |
x = 1:.1:10;
assert(isequal(mono_increase(x),true));
tf =
logical
1
|
5 | Pass |
x = cumsum(rand(1,100));
x(5) = -1;
assert(isequal(mono_increase(x),false));
tf =
logical
0
|
6 | Pass |
x = cumsum(rand(1,50));
assert(isequal(mono_increase(x),true));
tf =
logical
1
|
Project Euler: Problem 6, Natural numbers, squares and sums.
1018 Solvers
Determine Whether an array is empty
646 Solvers
Flag largest magnitude swings as they occur
582 Solvers
How many trades represent all the profit?
520 Solvers
Is this is a Tic Tac Toe X Win?
438 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!