Question not clear

Please explain the problem statement of Challenge-Increasing Decreasing Sequence. I cannot understand how we to split the series of numbers.
Problem Link-https://online.codingblocks.com/player/13324/content/4801?s=2154

Hey Dhruv, problem is pretty simple, you will be given a sequence and you have to just check if the sequence is strictly decreasing first and then it is strictly increasing.
A sequence is true if you can split it into two sub sequence such that first sequence is strictly decreasing and second sequence is strictly decreasing.
For e.g.,
1 2 3 4 5
This sequence is also true as we can split it into two sequence like., sequence one is 0 and sequence two is 1 2 3 4 5.
Let’s take another example.,
5 4 3 2 1
This is also true as we can split it such that sequence one is5 4 3 2 1 and sequence two is 0.
According to the problem statement, we can say the if the sequence decreases then it should not increase, if this is the case one can directly print false else print true.