Problem · Array
Count Elements with at Least One Smaller and One Greater Value
Learn this problemProblem statement
You are given an array of integers, count the number of elements having at least one smaller value and at least one greater value.
Input:
The input to the solution function consists of an integer array Nums.
Output:
Return the count.
Function
countElementsWithAtLeastOneSmallerAndOneGreaterValue(nums: int[]) → intExamples
Example 1
nums = [1, 2, 3]return = 1Only element 2 satisfies the condition.
Constraints
na