I'm writing a program to convert integers to Roman numerals (naively -- it doesn't know how to do the subtraction trick yet). What I have is functional, but it is not "Good Ruby".
VALUES = [
["M", 1000],
["D", 500],
["C", 100],
["L", 50],
["X", 10],
["V", 5],
["I", 1],
]
def romanize n
roman = ""
VALUES.each do |pair|
letter = pair[0]
value = pair[1]
roman += letter*(n / value)
n = n % value
end
return roman
end
I suppose a hash makes more sense than the array of arrays, but the way I update n, order matters. Passing in pair to the block is dumb, but passing letter, value didn't work like I'd hoped.
Thank you for your comments.