Find the peaks and lows in a given array of integers.
Given an array of integers, find the local peaks and lows (local extremums) in the array. Return a string with a P for each peak, an L for each low and a - for each other element.
Notes:
# | Size | % | Users |
---|---|---|---|
#1 | 72 c. | Top 20% | |
#2 | 85 c. | Top 30% | |
#3 | 101 c. | Top 40% | |
#4 | 103 c. | Top 50% | |
#5 | 104 c. | Top 60% | |
#6 | 107 c. | Top 70% | |
#7 | 117 c. | Top 80% | |
#8 | 146 c. | Top 90% | |
#9 | 210 c. | Top 100% |