Created
October 11, 2013 19:30
-
-
Save davidbella/6940656 to your computer and use it in GitHub Desktop.
Ruby: Integer to Roman Numeral converter
This file contains hidden or 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
class Integer | |
@@conversion = { | |
1 => ['I', 'V', 'X'], | |
2 => ['X', 'L', 'C'], | |
3 => ['C', 'D', 'M'], | |
4 => ['M', 'M', 'M'] | |
} | |
def to_roman | |
numeral = self | |
roman_numeral = "" | |
# do it by places | |
# 1's place | |
# build it up and move on, shovel it in | |
# | |
i = 1 | |
loop do | |
place = numeral % 10 | |
this_place = "" | |
if i == 4 | |
this_place = @@conversion[i][0] * place | |
roman_numeral = this_place + roman_numeral | |
break | |
elsif place.between?(1,3) | |
this_place = @@conversion[i][0] * place | |
elsif place == 4 | |
this_place = @@conversion[i][0] + @@conversion[i][1] | |
elsif place.between?(5,8) | |
this_place = @@conversion[i][1] | |
this_place += @@conversion[i][0] * (place - 5) | |
elsif place == 9 | |
this_place = @@conversion[i][0] + @@conversion[i][2] | |
elsif place == 0 | |
i += 1 if i == 3 | |
end | |
roman_numeral = this_place + roman_numeral | |
i += 1 if i < 4 | |
numeral /= 10 | |
break if numeral == 0 | |
end | |
roman_numeral | |
end | |
end |
This file contains hidden or 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
# # Roman Numerals | |
# The Romans were a clever bunch. They conquered most of Europe and ruled it for hundreds of years. They invented concrete and straight roads and even bikinis. One thing they never discovered though was the number zero. This made writing and dating extensive histories of their exploits slightly more challenging, but the system of numbers they came up with is still in use today. For example the BBC uses Roman numerals to date their programmes. | |
# The Romans wrote numbers using letters - I, V, X, L, C, D, M. (notice these letters have lots of straight lines and are hence easy to hack into stone tablets). | |
# Write a function to convert from normal numbers to Roman Numerals: e.g. | |
# ``` | |
# 1 => I | |
# 10 => X | |
# 7 => VII | |
# ``` | |
# There is no need to be able to convert numbers larger than about 3000. (The Romans themselves didn't tend to go any higher) | |
# Wikipedia says: Modern Roman numerals ... are written by expressing each digit separately starting with the left most digit and skipping any digit with a value of zero. | |
# To see this in practice, consider the example of 1990. | |
# In Roman numerals 1990 is MCMXC: | |
# 1000=M | |
# 900=CM | |
# 90=XC | |
# 2008 is written as MMVIII: | |
# 2000=MM | |
# 8=VIII | |
# See also: http://www.novaroma.org/via_romana/numbers.html | |
require_relative '../lib/roman_numerals' | |
RSpec.configure do |config| | |
# Use color in STDOUT | |
config.color_enabled = true | |
# Use color not only in STDOUT but also in pagers and files | |
config.tty = true | |
# Use the specified formatter | |
config.formatter = :documentation # :progress, :html, :textmate | |
end | |
describe Integer, '#to_roman' do | |
it 'converts 1' do | |
1.to_roman.should eq 'I' | |
end | |
it 'converts 2' do | |
2.to_roman.should eq 'II' | |
end | |
it 'converts 3' do | |
3.to_roman.should eq 'III' | |
end | |
it 'converts 4' do | |
4.to_roman.should eq 'IV' | |
end | |
it 'converts 5' do | |
5.to_roman.should eq 'V' | |
end | |
it 'converts 6' do | |
6.to_roman.should eq 'VI' | |
end | |
it 'converts 9' do | |
9.to_roman.should eq 'IX' | |
end | |
it 'converts 27' do | |
27.to_roman.should eq 'XXVII' | |
end | |
it 'converts 48' do | |
48.to_roman.should eq 'XLVIII' | |
end | |
it 'converts 59' do | |
59.to_roman.should eq 'LIX' | |
end | |
it 'converts 93' do | |
93.to_roman.should eq 'XCIII' | |
end | |
it 'converts 141' do | |
141.to_roman.should eq 'CXLI' | |
end | |
it 'converts 163' do | |
163.to_roman.should eq 'CLXIII' | |
end | |
it 'converts 402' do | |
402.to_roman.should eq 'CDII' | |
end | |
it 'converts 575' do | |
575.to_roman.should eq 'DLXXV' | |
end | |
it 'converts 911' do | |
911.to_roman.should eq 'CMXI' | |
end | |
it 'converts 1001' do | |
1001.to_roman.should eq 'MI' | |
end | |
it 'converts 1024' do | |
1024.to_roman.should eq 'MXXIV' | |
end | |
it 'converts 1464' do | |
1464.to_roman.should eq 'MCDLXIV' | |
end | |
it 'converts 1989' do | |
1989.to_roman.should eq 'MCMLXXXIX' | |
end | |
it 'converts 1998' do | |
1998.to_roman.should eq 'MCMXCVIII' | |
end | |
it 'converts 3000' do | |
3000.to_roman.should eq 'MMM' | |
end | |
it 'converts 4999' do | |
4999.to_roman.should eq 'MMMMCMXCIX' | |
end | |
end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment