From ab5f5458a859efd92be3c3606d59dbc59ee3ec0b Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Tue, 29 Oct 2024 20:27:39 -0700 Subject: [PATCH] Update evaluate.py --- kyu_2/evaluate_mathematical_expression/evaluate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_2/evaluate_mathematical_expression/evaluate.py b/kyu_2/evaluate_mathematical_expression/evaluate.py index 4d578001574..44b06f82fa7 100644 --- a/kyu_2/evaluate_mathematical_expression/evaluate.py +++ b/kyu_2/evaluate_mathematical_expression/evaluate.py @@ -198,4 +198,4 @@ def normalize_string(string: str) -> str: strings.append(temp) string_temp = '' - return ' '.join([s for s in strings]) + return ' '.join(strings)