CJCoding With Joseph

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 run 1, 2, 3, 4 has length 4, 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.