Difficulty: Easy
Correct Answer: 709832
Explanation:
Introduction / Context:
This is a direct substitution coding problem. Each letter maps to a specific digit. The task is to apply the table consistently from left to right.
Given Data / Assumptions:
Concept / Approach:
For a one-to-one table, simply replace each letter with its corresponding digit, taking care not to transpose adjacent positions.
Step-by-Step Solution:
Verification / Alternative check:
Re-read the mapping in reverse: 7→V, 0→G, 9→I, 8→X, 3→R, 2→M to recover the original string.
Why Other Options Are Wrong:
Common Pitfalls:
Swapping the last two digits (R and M) or mistaking X for 0 instead of 8.
Final Answer:
709832
Discussion & Comments