This commit is contained in:
lukew3
2020-10-19 21:25:09 -04:00
parent 96a4358cd8
commit d4906d85f8
3 changed files with 5 additions and 4 deletions

View File

@@ -8,4 +8,5 @@ def decimalToOctalFunc(maxDecimal=4096):
return problem, solution
decimalToOctal = Generator("Converts decimal to octal", 82, "What's the octal representation of 98?", "0o142", decimalToOctalFunc)
decimalToOctal = Generator("Converts decimal to octal", 84,
"What's the octal representation of 98?", "0o142", decimalToOctalFunc)

View File

@@ -25,4 +25,5 @@ def decimalToRomanNumeralsFunc(maxDecimal=4000):
return problem, solution
decimalToRomanNumerals = Generator("Converts decimal to Roman Numerals", 83, "Convert 20 into Roman Numerals", "XX", decimalToRomanNumeralsFunc)
decimalToRomanNumerals = Generator("Converts decimal to Roman Numerals",
85, "Convert 20 into Roman Numerals", "XX", decimalToRomanNumeralsFunc)