Changed generator names to camelCase

This commit is contained in:
Nitsujed
2020-10-19 15:34:27 -04:00
parent 1844fb3447
commit 1daa09d0d1
3 changed files with 5 additions and 5 deletions

View File

@@ -17,5 +17,5 @@ def quotientofpowersamebaseFunc(maxBase=50, maxPower=10):
return problem, solution
quotientofpowersamebase = Generator("Quotient of Powers with Same Base", 82,
quotientOfPowerSameBase = Generator("Quotient of Powers with Same Base", 82,
"6^4 / 6^2 = 6^(4-2) = 6^2", "36", quotientofpowersamebaseFunc)

View File

@@ -17,5 +17,5 @@ def quotientofpowersamepowerFunc(maxBase=50, maxPower=10):
return problem, solution
quotientofpowersamepower = Generator("Quotient of Powers with Same Power", 83,
quotientOfPowerSamePower = Generator("Quotient of Powers with Same Power", 83,
"6^4 / 3^4 = (6/3)^4 = 2^4", "16", quotientofpowersamepowerFunc)

View File

@@ -267,8 +267,8 @@ decimalToHexadeci = Generator("Decimal to Hexadecimal", 79, "Binary of a=",
"b", deciToHexaFunc)
percentage = Generator("Percentage of a number", 80, "What is a% of b?",
"percentage", percentageFunc)
celsiustofahrenheit = Generator("Celsius To Fahrenheit", 81, "(C +(9/5))+32=", "F", celsiustofahrenheitFunc)
quotientofpowersamebase = Generator("Quotient of Powers with Same Base", 82,
celsiusToFahrenheit = Generator("Celsius To Fahrenheit", 81, "(C +(9/5))+32=", "F", celsiustofahrenheitFunc)
quotientOfPowerSameBase = Generator("Quotient of Powers with Same Base", 82,
"6^4 / 6^2 = 6^(4-2) = 6^2", "36", quotientofpowersamebaseFunc)
quotientofpowersamepower = Generator("Quotient of Powers with Same Power", 83,
quotientOfPowerSamePower = Generator("Quotient of Powers with Same Power", 83,
"6^4 / 3^4 = (6/3)^4 = 2^4", "16", quotientofpowersamepowerFunc)