Условие:
URL Codewars: https://www.codewars.com/kata/53005a7b26d12be55c000243
Simpler Interactive interpreter (or REPL) You will create an interpreter which takes inputs described below and produces outputs, storing state in between each input. This is a simplified version of the Simple Interactive Interpreter kata >with functions removed, so if you have fun with this kata, check out its big brother to add functions into the mix. If you’re not sure where to start with this kata, check out ankr’s Evaluate Mathematical Expression kata. Note that the eval command has been disabled. Concepts The interpreter will take inputs in the language described under the language header below. This section will give an overview of the language constructs. Variables Any identifier which is not a keyword will be treated as a variable. If the identifier is on the left hand side of an assignment operator, the result of the right hand side will be stored in the variable. If a variable occurs as part of an expression, the value held in the variable will be substituted when the expression is evaluated. Variables are implicitly declared the first time they are assigned to. Example: Initializing a variable to a constant value and using the variable in another expression (Each line starting with a ‘>’ indicates a separate call to the input method of the interpreter, other lines represent output) Input: Input will conform to the expression production in the grammar below. Output: Output for a valid expression will be the result of the expression. Output for input consisting entirely of whitespace will be an empty string (null in case of Java). All other cases will throw an error.
Суть задачи сводиться к тому, чтобы реализовать последовательный порядок действий. Мое решение реализуется с использованием библиотеки регулярных выражений и написанию собственного класса “интерпритатора”, который вычисляет математические выражения быстрее, чем встроенная в python функция eval()
.
Важно, что мое решение работает с правилами математических операций, т.е операция в скобках будет выполняться раньше, чем операция вне их. То же самое и с порядком умножения, деления сложения и вычистания.