โ Back to Arrays
Question 325
Longest Increasing Run
Longest Increasing Run
The array{1, 2, 1, 2, 3, 4, 1}is given. Find the length of the longest run of consecutive elements that is strictly increasing (each element greater than the one before it), and print that length: 4 The run1, 2, 3, 4has length4, which is the longest.
Expected Output:
4
Topics:
Arrays
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (p, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.