Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Roman Numerals solution in Clear category for Roman Numerals by michal_bien
gdata = 0
def process(number, letter):
global gdata
result = ""
while gdata>=number:
result+=letter
gdata-=number
return result
def romanFactor(factor, letters):
resolution = ""
criticals = [10, 9, 5, 4, 1]
i=0
while i
Oct. 7, 2016