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: