Python for Developer: Increasing Decreasing Sequence [Test Case 8] [ISSUE RESOLVED]

Test Case Input:
8
7
10
7
6
5
3
2
1

Test Case Output:
true

Expected Output (according to problem statement):
false

According to problem statement, first sequence MUST be in decreasing order and second sequence MUST BE in increasing order. So, output should be “false”, as first sequence would be [7] and second sequence would be [10, 7, 6, 5, 3, 2, 1]. So, WHY the Test Case 8 generates output as “true”??

Please help me understand this Test Case!