My issue
What exactly does rightmost index mean here?
Problem Statement
Given an array A of length N, please perform the following operations:
Find the largest element of the array A - store it as the variable large
Find the right-most index of the largest element of the array - store it as the variable right
Output the largest element and the right-most index of the largest element of the array.
Learning course: [C++ for problem solving - 2](https://www.codechef.com/learn/cpp-beginner-v2-p2)
Problem Link: https://www.codechef.com/learn/BP00BC18_V2/problems/AOCV206