Question: Nearest Greater Element Actions Options You are given an integer array A of size N and an index idx. Find the distance from the element
Nearest Greater Element
Actions
Options
You are given an integer array of size and an index idx.
Find the distance from the element at idx to the nearest element on its left that is greater than it If there is no such element for the chosen index, return
Notes:
For example, for the array and idx the nearest greater element on the left for the element at index which is is and the distance is
idx follows based indexing.
Function description
Complete the distanceToGreaterLeft function in the editor below. It has the following parameters:
Name
Type
Description
N
INTEGER
The size of array
A
INTEGER ARRAY
The given array.
idx
INTEGER
The index of the element of interest in
Return
The function must return an INTEGER denoting the distance from the element at idx to its nearest greater element on the left. If no such element exists, it should return
Constraints
Input format for debugging
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
