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
when 1010102050 | |
"Rack City bitch, Rack Rack City bitch." |
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
module InWords | |
def in_words | |
numerals = ["","one","two","three","four","five","six","seven","eight","nine"] | |
tens = ["","ten","twenty","thirty","forty","fifty","sixty","seventy","eighty","ninety"] | |
teens = %w(ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen) | |
powers = [""," thousand"," million"," billion"," trillion"," quadrillion"," quintillion"," sextillion"," septillion"," octillion"," nonillion"," decillion"," undecillion"," duodecillion"," tredecillion"," quattuordecillion"," quindecillion"," sexdecillion"," septendecillion"," octodecillian"," novemdecillion"," vigintillion"] | |
result = [] | |
counter = 0 | |
negative = false |
NewerOlder