Reverse the alphabet so that abc => zyx and ABC => ZYX
Examples:
("code") => "xlwv" ("Golf") => "Tlou" ("1Avva8TT") => "1Zee8GG"
^You can assume that you will always recieved a valid string
Reverse the alphabet so that abc => zyx and ABC => ZYX
Examples:
("code") => "xlwv" ("Golf") => "Tlou" ("1Avva8TT") => "1Zee8GG"
^You can assume that you will always recieved a valid string
Language: Python 2.7
Length: 51
Solution:
f=lambda s:`map(lambda x:chr(31^4+ord(x)),s)`[2::5]
Language: PHP (v5.4 — deprecated use of
/emodifier)Length: 73
Solution:
or 50 characters without the
function()wrapping: