
Given an integer array nums and two integers left and right , return the number of contiguous non-empty subarrays such that the value of the maximum array element in that subarray is in the range [left, right] .
The test cases are generated so that the answer will fit in a 32-bit integer.
1 <= nums.length <= 10 ^50 <= nums[i] <= 10 ^90 <= left <= right <= 10 ^9