Last active
August 26, 2017 20:56
-
-
Save forsythetony/41bb26c10c996d3ca00db82f63f7fba6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
letter_mapping = { | |
'A' : [ 'A', '4' ], | |
'B' : [ 'B' , '8' ], | |
'C' : [ 'C' ], | |
'D' : [ 'D' ], | |
'E' : [ 'E' , '3' ], | |
'F' : [ 'F' ], | |
'G' : [ 'G' , '6' ], | |
'H' : [ 'H' ], | |
'I' : [ 'I', '1' ], | |
'J' : [ 'J' ], | |
'K' : [ 'K' ], | |
'L' : [ 'L' ], | |
'M' : [ 'M' ], | |
'N' : [ 'N' ], | |
'O' : [ 'O', '0' ], | |
'P' : [ 'P' ], | |
'Q' : [ 'Q' ], | |
'R' : [ 'R' ], | |
'S' : [ 'S' , '5' ], | |
'T' : [ 'T' ], | |
'U' : [ 'U' ], | |
'V' : [ 'V' ], | |
'W' : [ 'W' ], | |
'X' : [ 'X' ], | |
'Y' : [ 'Y' ], | |
'Z' : [ 'Z' , '2' ], | |
'0' : [ '0' , 'O' ], | |
'1' : [ '1' , 'I' ], | |
'2' : [ '2' , 'Z' ], | |
'3' : [ '3' , 'E' ], | |
'4' : [ '4', 'A' ], | |
'5' : [ '5' , 'S' ], | |
'6' : [ '6' , 'G' ], | |
'7' : [ '7' ], | |
'8' : [ '8' , 'B' ], | |
'9' : [ '9' ] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment