From c7fee15e5833a584827e348fe94dc34bd5968ede Mon Sep 17 00:00:00 2001 From: fd7794 Date: Tue, 6 Feb 2024 11:49:36 +0100 Subject: [PATCH] added result declaration for new_exponent=1 for simplify_exponential_function --- src/main/py/read_math_function.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/py/read_math_function.py b/src/main/py/read_math_function.py index 89cd502..21ff654 100644 --- a/src/main/py/read_math_function.py +++ b/src/main/py/read_math_function.py @@ -84,4 +84,6 @@ def simplify_exponential_function(type, function): new_coefficient = coefficient * exponent new_exponent = exponent - 1 if new_exponent == 0: - result = [str(new_coefficient)] \ No newline at end of file + result = [str(new_coefficient)] + elif new_exponent == 1: + result = [f"{new_coefficient}x"] \ No newline at end of file