Created
January 18, 2015 09:57
-
-
Save armanbilge/980568bfc9f45f598d3f 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
from string import ascii_lowercase as alphabet | |
f = lambda i: alphabet[i] if i < 26 else alphabet[i / 26 - 1] + alphabet[i % 26] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment