CJCoding With Joseph

Count Peak Elements

An array int nums[] = {1, 3, 2, 4, 1, 0, 5} is given. A peak is an element that is strictly greater than both of its immediate neighbours. The first and last elements can never be peaks because they each have only one neighbour. Count the peaks and print the total:

2

(the peaks are 3 at index 1 and 4 at index 3). Print only the number and a newline.

Expected Output:

2
Topics:
Arrays
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.