1112: 最长连续递增数字子串
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:7
Solved:6
Description
输入一串数字,找出其中最长的连续递增数字子串并以列表形式输出。
Input
5 4 8 9 2 6 6 6
Output
[4, 8, 9]
Sample Input Copy
5 4 8 9 2 6 9 10
Sample Output Copy
[2, 6, 9, 10]