A list of cells is given.
Return true if the elements of the list increase monotonically (each element is strictly larger than the previous). Return false otherwise.
For example : If list={1 2 3 4 5} => the answer is YES (1->2->3->4->5)
If list={[1 2] 4 [4 5] 6} => the answer is YES (1(or 2)->4->5->6)
But if list={[1 2] 0 [4 5] 6} => the answer is NO (1 or 2 are >0)
Easy ?
And a list like ... {[10 1] [2 3] [4 40] [1 1 2 2 2 5] 6 40 [1:41] [1:42]} ?
Good luck !
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers45
Suggested Problems
-
Calculate the Levenshtein distance between two strings
1507 Solvers
-
Generate a vector like 1,2,2,3,3,3,4,4,4,4
13758 Solvers
-
Remove element(s) from cell array
1996 Solvers
-
ベクトル [1 2 3 4 5 6 7 8 9 10] の作成
601 Solvers
-
String Array Basics, Part 1: Convert Cell Array to String Array; No Missing Values
1973 Solvers
More from this Author43
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
How about adding a test suite where some of the cell entries are 2-D?
Most of the solutions will not be affected by this update.