Need help on a program

Stuck on this exercise from a book:
Old-school Roman numerals. In the early days of Roman numerals,
the Romans didn’t bother with any of this new-fangled subtraction
“IX” nonsense. No sir, it was straight addition, biggest to littlest—
so 9 was written “VIIII,” and so on. Write a method that, when
passed an integer between 1 and 3000 (or so), returns a string
containing the proper old-school Roman numeral. In other words,
old_roman_numeral 4 should return ‘IIII’. Make sure to test
your method on a bunch of different numbers.
For reference, these are the values of the letters used:
I =1 V =5 X = 10 L = 50
C = 100 D = 500 M = 1000

Suggestions on a soloution?

Suggestions on a soloution?
There’s one in the Ruby Cookbook, by O’Reilly. I am sure there would be
some on Google, too. I even think I recall a RubyQuiz on this topic.

Christopher L. wrote:

I =1 V =5 X = 10 L = 50
C = 100 D = 500 M = 1000

Suggestions on a soloution?


Posted via http://www.ruby-forum.com/.

class Integer
def to_roman
“I =1 V =5 X = 10 L = 50
C = 100 D = 500 M = 1000”.
scan( / ([A-Z]) \s = \s (\d+) /x ).
map{|letter,val| [ letter, val.to_i ] }.
sort_by{|a| -a.last}.
inject( [ “”, self ] ){|roman, pair|
[ roman.first + pair.first * (roman.last / pair.last),
roman.last % pair.last ] }.
first
end
end

On 12/9/06, Christopher L. [email protected] wrote:

I =1 V =5 X = 10 L = 50
C = 100 D = 500 M = 1000

Suggestions on a soloution?

  1. skeleton (I’ll use test/unit, as it’s easier to check the results)

require ‘test/unit’

def to_roman(int)

here comes the code

end

class TestToRoman < Test::Unit::TestCase

check the base digits

def test_roman_digits
assert_equal ‘I’, to_roman(1)
assert_equal ‘V’, to_roman(5)
assert_equal ‘X’, to_roman(10)
assert_equal ‘L’, to_roman(50)
assert_equal ‘C’, to_roman(100)
assert_equal ‘D’, to_roman(500)
assert_equal ‘M’, to_roman(1000)
end

def test_roman_more
assert_equal ‘I’, to_roman(1)
assert_equal ‘II’, to_roman(2)
assert_equal ‘III’, to_roman(3)
assert_equal ‘IIII’, to_roman(4)

   assert_equal 'VI', to_roman(6)
   assert_equal 'VII', to_roman(7)
   assert_equal 'VIII', to_roman(8)
   assert_equal 'VIIII', to_roman(9)

   assert_equal 'MDCCCCLXXXVIIII', to_roman(1989)

end
end

  1. to the actual solution:
    (you’ll be creating the number left-to-right)

find largest digit less than the number. subtract its value from the
number, add the digit to the result
. repeat until the digit is larger
than the remainder. if there’s anything left, choose the next digit.

in fact, the text between the stars is the simplest/most generic
algorithm. the following things are just an optimisation.

The actual ruby code I’ll leave to you. First do anything that works
(use the test above to check, and add your own ones), no matter how
ugly it is. Then post your code, and somebody (be it me or anybody
else) will suggest you improvements.

  1. a bit of rubyism:

instead of
def to_roman(int)

end

and calling as to_roman(123) you can extend the integers themselves:

class Integer
def to_roman

use self insted of int parameter

end
end

and call as 123.to_roman - it’s nicer.

class Integer
def to_roman
Hash[“M”, 1000, “D”, 500, “C”, 100, “L”, 50, “X”, 10, “V”, 5, “I”,
1].sort_by{|a| -a.last}.inject( [ “”, self ] ){|roman, pair|
[ (pair.last - roman.last ==1 )? roman.first+“I”+pair.first :
roman.first + pair.first * (roman.last / pair.last),
roman.last % pair.last ] }.
first
end
end

I noticed that your code is partly wrong since it will output IIII for
4 and so on , I have modified it a little bit , but I have not checked
the result

Regards
On 12/9/06, William J. [email protected] wrote:

For reference, these are the values of the letters used:
"I =1 V =5 X = 10 L = 50


Chỉ có lý trí của bản thân má»›i soi sáng được sá»± thật.“Cái đẹp đẽ nhất
mà chúng ta có thể trải nghiệm được là cái bí ẩn. Đó là cảm thức nền
tảng trong cái nôi của nghệ thuật và khoa học chân chính. Kẻ nà o không
biết đến nó, không còn khả năng ngạc nhiên hay kinh ngạc, kẻ đó coi
nhÆ° đã chết, đã tắt rụi lá»­a sống trong mắt mình”“Das Schönste, was wir
erleben können, ist das Geheimnisvolle. Es ist das Grundgefühl, das an
der Wiege von wahrer Kunst und Wissenschaft steht. Wer es nicht kennt
und sich nicht mehr wundern, nicht mehr staunen kann, der ist
sozusagen tot und sein Auge erloschen.”“The fairest thing we can
experience is the mysterious. It is the fundamental emotion which
stands at the cradle of true art and true science. He who knows it not
and can no longer wonder, no longer feel amazement, is as good as
dead, his eyelight has been extinct.”

#!/usr/bin/env ruby
@data = [
[
“M” , 1000],
[“CM” , 900],
[“D” , 500],
“CD” , 400],
[
[“C” , 100],
[
“XC” , 90],
“L” , 50],
[
“XL” , 40],
[
[“X” , 10],
[“IX” , 9],
“V” , 5],
[
[
“IV” , 4],
“I” , 1]
[
]
@roman = %r{^[CDILMVX]$}
@arabic = %r{^[0-9]
$}
def to_roman(num)
“”
reply =
for key, value in @data
count, num = num.divmod(value)
reply << (key * count)
end
reply
end
def
to_arabic(rom)
reply = 0
for key, value in @data
while rom.index(key) == 0
reply += value
rom.slice!(key)
end
end
reply
end
$stdin.each do |line|
case line
when @roman
puts to_arabic(line)
when @arabic
puts to_roman(line.to_i)
end
end


Another solution from the pragmatic book : best quiz