Problem 42797. Find the path through the cell
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
-
2 Comments
James
on 8 Apr 2016
How about adding a test suite where some of the cell entries are 2-D?
Jean-Marie Sainthillier
on 11 Apr 2016
Most of the solutions will not be affected by this update.
Solution Comments
Show commentsGroup

Number Manipulation III
- 15 Problems
- 14 Finishers
- High Precision Square Root (Inspired by Project Euler 80)
- Damping of Servomotors with Tachometer Feedback
- Find the right number make the equation
- Deriving a function using the difference quotient
- Fast 1-D Convolution (full shape)
- Fast 1-D Convolution (same shape)
- Fast 1-D Convolution (valid shape)
- Lambert's W
- First use of arrayfun() and anonymous function @(x)
- Cell Operator *
- Product of two multivariate polynomials
- Multivariate polynomials - convert monomial form to array
- Multivariate polynomials - overload multiplication
- Multivariate polynomials - emulate symbolic form
- Rewrite setdiff to account for non-unique values
Problem Recent Solvers41
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!