2012. Sum of Beauty in the Array
https://leetcode.com/problems/sum-of-beauty-in-the-array
Description
You are given a 0-indexed integer array nums
. For each index i
(1 <= i <= nums.length - 2
) the beauty of nums[i]
equals:
2
, ifnums[j] < nums[i] < nums[k]
, for all0 <= j < i
and for alli < k <= nums.length - 1
.1
, ifnums[i - 1] < nums[i] < nums[i + 1]
, and the previous condition is not satisfied.0
, if none of the previous conditions holds.
Return the sum of beauty of all nums[i]
where 1 <= i <= nums.length - 2
.
Example 1:
Example 2:
Example 3:
Constraints:
3 <= nums.length <= 105
1 <= nums[i] <= 105
ac
Last updated