Created
March 8, 2012 23:18
-
-
Save paul/2004078 to your computer and use it in GitHub Desktop.
This file contains 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
LETTERS = "abcdefghijklmnopqrstuvwxyz".split('') | |
def base_alpha_26(int) | |
num = int | |
letters = [] | |
i = 0 | |
i += 1 until 26**i > int | |
while (i -= 1) >= 0; | |
letters << (num / 26**i) | |
num = num % (26**i) | |
end | |
letters.map { |l| LETTERS[l-1] }.join | |
end | |
puts base_alpha_26(Integer(ARGV[0])) |
This file contains 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
$ ruby damn-you-tim.rb 1000000000 | |
cfdgsxl |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Just for good measure, golfed.