Difficulty: Medium
Correct Answer: 37
Explanation:
Introduction / Context:
This is a classic single-row ranking problem. Two positions are given from opposite ends, and a relative offset between the two people is also provided. We need to convert between left-rank and right-rank to compute the total strength of the row.
Given Data / Assumptions:
Concept / Approach:
Use the identity: right_rank = N − left_rank + 1, where N is the total. Express Sudhir's left-rank from the relative information, then equate it to the formula derived from his right-rank to solve for N.
Step-by-Step Solution:
Verification / Alternative check:
Convert Sudhir's left-rank back to right with N = 37: right = 37 − 16 + 1 = 22, matching the given.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing “to the right of” with a right-end rank; or forgetting the +1 in right = N − left + 1.
Final Answer:
37
Discussion & Comments