Question 13 You have given height array of array. Generate the original array.Input: [6,3,0,2,2,0,0]Output : [ 1,5,7,3,2,6,4]A[i] value in input array is the number of greater element on right side. Previous Next