diff --git a/mathgenerator/funcs/DecimalToOctalFunc.py b/mathgenerator/funcs/DecimalToOctalFunc.py deleted file mode 100644 index 703ef45..0000000 --- a/mathgenerator/funcs/DecimalToOctalFunc.py +++ /dev/null @@ -1,11 +0,0 @@ -from .__init__ import * - - -def DecimalToHexFunc(max_dec=99): - a = random.randint(1, max_dec) - b = oct(a) - - problem = "Octal of " + str(a) + "=" - solution = str(b) - - return problem, solution