Challenge
In this challenge you have to take a number as input and output the corresponding letter of the alphabet, and vice versa. (1 <=> A, 2 <=> B) etc.
1 -> A 2 -> B ... 26 -> Z A -> 1 B -> 2 ... Z -> 26 Rules
- This is code-golf, so shortest code in bytes wins.
- The input will only consist of either an uppercase letter from
AtoZor an integer from1to26inclusive. - Trailing whitespaces (space and newline) are allowed.
26as an integer or"26"as a string, or are both allowed? \$\endgroup\$