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.

link|improve this question

0% accept rate
1  
There's a gem for that... rubygems.org/gems/romans – jondavidjohn Jan 18 at 6:18
3  
codereview.SE is for questions such as this. – outis Jan 18 at 6:18
The point is to improve the code, not to solve the problem with a pre-written gem. I will re-post in the more appropriate forum. – tom Jan 18 at 20:20
feedback

closed as off topic by outis, Andrew Grimm, the Tin Man, Jörg W Mittag, undur_gongor Jan 18 at 10:49

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

Browse other questions tagged or ask your own question.